This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ansible/roles/webserver/files/etc/apache2/sites-available/mightywcms.conf

16 lines
517 B
Plaintext

<VirtualHost *:80>
ServerAdmin naglfar@thunix.net
ServerName mightywcms.thunix.net
DocumentRoot /var/www/MightyWCMS
ErrorLog ${APACHE_LOG_DIR}/error.mightywcms.log
CustomLog ${APACHE_LOG_DIR}/access.mightywcms.log combined
<Directory /var/www/MightyWCMS>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
RewriteEngine on
Redirect permanent / https://mightywcms.thunix.net/
</VirtualHost>