mirror of https://github.com/MISP/misp-docker
18 lines
434 B
Plaintext
18 lines
434 B
Plaintext
<VirtualHost *:80>
|
|
ServerName misp-server
|
|
DocumentRoot /var/www/MISP/app/webroot
|
|
<Directory /var/www/MISP/app/webroot>
|
|
Options -Indexes
|
|
AllowOverride all
|
|
Require all granted
|
|
</Directory>
|
|
LogLevel warn
|
|
|
|
ErrorLog /dev/stdout
|
|
CustomLog /dev/stdout combined
|
|
|
|
ServerSignature Off
|
|
Header set X-Content-Type-Options nosniff
|
|
Header set X-Frame-Options DENY
|
|
</VirtualHost>
|