source: github/.htaccess @ 29640bcf

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 29640bcf was 29640bcf, checked in by thomascube <thomas@…>, 3 years ago

Add (inactive) session.cookie_path line to .htaccess as suggested in #1486456

  • Property mode set to 100644
File size: 1.1 KB
Line 
1# AddDefaultCharset     UTF-8
2AddType text/x-component .htc
3
4<IfModule mod_php5.c>
5php_flag        display_errors  Off
6php_flag        log_errors      On
7# php_value     error_log       logs/errors
8
9php_value       upload_max_filesize     5M
10php_value       post_max_size           6M
11php_value       memory_limit            64M
12
13php_flag        zlib.output_compression         Off
14php_flag        magic_quotes_gpc                Off
15php_flag        magic_quotes_runtime            Off
16php_flag        zend.ze1_compatibility_mode     Off
17php_flag        suhosin.session.encrypt         Off
18
19#php_value      session.cookie_path             /
20php_value       session.auto_start      0
21php_value       session.gc_maxlifetime  21600
22php_value       session.gc_divisor      500
23php_value       session.gc_probability  1
24
25# http://bugs.php.net/bug.php?id=30766
26php_value       mbstring.func_overload  0
27</IfModule>
28
29<IfModule mod_rewrite.c>
30RewriteEngine On
31RewriteRule ^favicon.ico$ skins/default/images/favicon.ico
32</IfModule>
33
34<IfModule mod_deflate.c>
35SetOutputFilter DEFLATE
36</IfModule>
37
38<IfModule mod_headers.c>
39# replace 'append' with 'merge' for Apache version 2.2.9 and later
40#Header append Cache-Control public env=!NO_CACHE
41</IfModule>
42
43<IfModule mod_expires.c>
44ExpiresActive On
45ExpiresDefault "access plus 1 month"
46</IfModule>
47
48FileETag MTime Size
49
50
Note: See TracBrowser for help on using the repository browser.