22 lines
491 B
ApacheConf
Executable File
22 lines
491 B
ApacheConf
Executable File
Header set X-Content-Type-Options: "nosniff"
|
|
Header set X-Frame-Options: "sameorigin"
|
|
|
|
ServerTokens Prod
|
|
|
|
<VirtualHost *:80>
|
|
ServerName localhost
|
|
ServerAdmin support@websight.nl
|
|
DocumentRoot /var/www/html
|
|
|
|
<Directory /var/www/html/>
|
|
Options -Indexes +FollowSymLinks +MultiViews
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/apache2/vhost-error.log
|
|
CustomLog /var/log/apache2/vhost-access.log combined
|
|
</VirtualHost>
|
|
|