12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- ErrorLog /dev/stderr
- LogLevel warn
- User ${APACHE_RUN_USER}
- Group ${APACHE_RUN_GROUP}
- IncludeOptional mods-enabled/*.load
- IncludeOptional mods-enabled/*.conf
- Timeout 256
- KeepAlive On
- MaxKeepAliveRequests 32
- KeepAliveTimeout 8
- Listen 8080
- ServerTokens Prod
- ServerSignature Off
- Header set X-Frame-Options: "sameorigin"
- LogFormat "%{%Y-%m-%dT%H:%M:%S%z}t %h \"%r\" %>s" neat
- CustomLog /dev/stdout neat
- <VirtualHost *:8080>
- DocumentRoot /koel
- </VirtualHost>
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- Require all denied
- </Directory>
- AccessFileName .htaccess
- <FilesMatch "^\.ht">
- Require all denied
- </FilesMatch>
- <Directory /koel>
- AllowOverride All
- Require all granted
- </Directory>
- IncludeOptional conf-enabled/*.conf
|