27 lines
759 B
ApacheConf
27 lines
759 B
ApacheConf
Allow from All
|
||
Satisfy Any
|
||
|
||
# – --------------------------------------------------------------
|
||
# Belässt die Dateien, die sich selten oder gar nicht ändern, für eine bestimmte Zeit im Browser-Cache
|
||
# – --------------------------------------------------------------
|
||
## EXPIRES CACHING ##
|
||
<IfModule mod_expires.c>
|
||
ExpiresActive On
|
||
ExpiresByType text/css "access plus 0 seconds"
|
||
ExpiresByType text/html "access plus 0 seconds"
|
||
ExpiresByType text/x-javascript "access plus 0 seconds"
|
||
ExpiresByType application/json "access plus 0 seconds"
|
||
|
||
ExpiresDefault "access plus 0 seconds"
|
||
</IfModule>
|
||
## EXPIRES CACHING ##
|
||
|
||
|
||
## PHP VALUES ##
|
||
php_value include_path /var/www/luethje/Hochzeit/include
|
||
php_value upload_max_filesize 100M
|
||
php_value post_max_size 100M
|
||
|
||
|
||
|