blob: 50ae47a92985d9d761fadfdc08255d1b3aef2952 [file] [log] [blame]
# ************************************
# Vhost template in module puppetlabs-apache
# Managed by Puppet
# ************************************
#
<VirtualHost *:80>
ServerName demo-stable.ofbiz.apache.org
## Vhost docroot
DocumentRoot "/var/www/ofbiz/big-files"
## Directories, there should at least be a declaration for /var/www/ofbiz/big-files
<Directory "/var/www/ofbiz/big-files">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
## Logging
ErrorLog "/var/log/apache2/ofbiz-stable_error.log"
ServerSignature Off
CustomLog "/var/log/apache2/demo-stable.ofbiz.apache.org.http_access.log" combined
## Custom fragment
RedirectMatch permanent ^/(.*)$ https://demo-stable.ofbiz.apache.org/$1
</VirtualHost>