Aleksander Machniak
2014-02-09 4bcb8ac002c95e6290b9307ab41bb8539cde8fe5
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
2dade1 30 # security rules:
AM 31 # - deny access to files not containing a dot or starting with a dot
32 #   in all locations except installer directory
33 RewriteRule ^(?!installer)(\.?[^\.]+)$ - [F]
34 # - deny access to some locations
35 RewriteRule ^/?(\.git|\.tx|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
36 # - deny access to some documentation files
37 RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml)$ - [F]
e3f427 38 </IfModule>
cb3ea1 39
d7f49d 40 <IfModule mod_deflate.c>
T 41 SetOutputFilter DEFLATE
42 </IfModule>
43
44 <IfModule mod_headers.c>
45 # replace 'append' with 'merge' for Apache version 2.2.9 and later
832890 46 #Header append Cache-Control public env=!NO_CACHE
d7f49d 47 </IfModule>
T 48
49 <IfModule mod_expires.c>
50 ExpiresActive On
51 ExpiresDefault "access plus 1 month"
52 </IfModule>
53
2f1429 54 FileETag MTime Size
5e8c77 55
A 56 <IfModule mod_autoindex.c>
4b1d5d 57 Options -Indexes
5e8c77 58 </ifModule>