19 lines
570 B
Plaintext
19 lines
570 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@thunix.net
|
|
ServerName wiki.thunix.net
|
|
ServerAlias wiki.thunix.tilde
|
|
DocumentRoot /var/www/wiki.thunix.net
|
|
ErrorLog ${APACHE_LOG_DIR}/error.wiki.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.wiki.log combined
|
|
<Directory /var/www/wiki.thunix.net>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
<Directorymatch "^/.*/\.git/">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directorymatch>
|
|
Redirect permanent / https://wiki.thunix.net/
|
|
</VirtualHost>
|