23 lines
714 B
Plaintext
23 lines
714 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@thunix.net
|
|
ServerName www.thunix.net
|
|
DocumentRoot /var/www/thunix.cf
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
<Directorymatch "^/.*/\.git/">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directorymatch>
|
|
<IfModule mod_userdir.c>
|
|
UserDir public_html
|
|
UserDir disabled root
|
|
<Directory /home/*/public_html>
|
|
AllowOverride FileInfo AuthConfig Limit Indexes
|
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
|
Require method GET POST OPTIONS
|
|
</Directory>
|
|
</IfModule>
|
|
Redirect permanent / https://www.thunix.net/
|
|
|
|
</VirtualHost>
|