Safe defaults to prevent #188

This commit is contained in:
ken restivo 2015-11-27 14:38:29 -08:00
parent fce1dc083b
commit 16e7ec7bfe

View file

@ -28,3 +28,9 @@ AddType audio/ogg .oga
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA] RewriteRule ^(.*)$ index.php?q=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
</IfModule> </IfModule>
# Required to keep Apache from hanging waiting for MySql connections
<IfModule mpm_prefork_module>
GracefulShutdownTimeout 300
</IfModule>