Aleksander Machniak
2013-11-22 aac4b452a3a538ecf6abdfcf100c7d9d33aadd1f
commit | author | age
ea7c46 1 # AddDefaultCharset    UTF-8
0d1dd7 2 AddType text/x-component .htc
ef9641 3
34942e 4 <IfModule mod_php5.c>
aaa6ac 5 php_flag    display_errors    Off
A 6 php_flag    log_errors    On
4b20e2 7 # php_value    error_log    logs/errors
aaa6ac 8
A 9 php_value    upload_max_filesize    5M
2d1a45 10 php_value    post_max_size        6M
A 11 php_value    memory_limit        64M
aaa6ac 12
6d479a 13 php_flag    zlib.output_compression        Off
A 14 php_flag    magic_quotes_gpc        Off
15 php_flag    magic_quotes_runtime        Off
16 php_flag    zend.ze1_compatibility_mode    Off
832890 17 php_flag     suhosin.session.encrypt     Off
aaa6ac 18
29640b 19 #php_value    session.cookie_path        /
5e8c77 20 php_flag    session.auto_start    Off
aaa6ac 21 php_value    session.gc_maxlifetime    21600
A 22 php_value    session.gc_divisor    500
23 php_value    session.gc_probability    1
34942e 24 </IfModule>
4e17e6 25
34942e 26 <IfModule mod_rewrite.c>
A 27 RewriteEngine On
aff970 28 RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
88934b 29
4b1d5d 30 # security rules
88934b 31 RewriteRule ^/?(\.git|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
AM 32 RewriteRule /?(README(.md)?|composer\.json-dist|composer\.json|package\.xml)$ - [F]
e3f427 33 </IfModule>
d7f49d 34
cb3ea1 35 # deny access to all files not containing a "." (dot)
88934b 36 # to block access to different README, Changelog, INSTALL, etc.
AM 37 # files of various skins and plugins.
cb3ea1 38 <FilesMatch "^[^\.]+$">
88934b 39     # Apache 2.4
AM 40     <IfModule mod_authz_core.c>
41         Require all denied
42     </IfModule>
43     # Apache 2.2
44     <IfModule !mod_authz_core.c>
45         Order Allow,Deny
46         Deny from all
47     </IfModule>
cb3ea1 48 </FilesMatch>
RB 49
d7f49d 50 <IfModule mod_deflate.c>
T 51 SetOutputFilter DEFLATE
52 </IfModule>
53
54 <IfModule mod_headers.c>
55 # replace 'append' with 'merge' for Apache version 2.2.9 and later
832890 56 #Header append Cache-Control public env=!NO_CACHE
d7f49d 57 </IfModule>
T 58
59 <IfModule mod_expires.c>
60 ExpiresActive On
61 ExpiresDefault "access plus 1 month"
62 </IfModule>
63
2f1429 64 FileETag MTime Size
5e8c77 65
A 66 <IfModule mod_autoindex.c>
4b1d5d 67 Options -Indexes
5e8c77 68 </ifModule>