ansible/roles/webserver/files/etc/apache2/sites-available/mightywcms.conf

15 lines
461 B
Plaintext
Raw Normal View History

2020-01-04 01:55:26 +00:00
<VirtualHost *:80>
ServerAdmin naglfar@thunix.net
ServerName mightywcms.thunix.net
DocumentRoot /var/www/MightyWCMS
ErrorLog ${APACHE_LOG_DIR}/mightywcms/error.log
CustomLog ${APACHE_LOG_DIR}/mightywcms/access.log combined
<Directory /var/www/MightyWCMS>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
RewriteEngine on
2020-01-04 01:55:26 +00:00
</VirtualHost>