diff options
| author | Bruno Cesar Ribas <brunoribas@gmail.com> | 2018-08-22 19:12:24 +0000 |
|---|---|---|
| committer | Bruno Cesar Ribas <brunoribas@gmail.com> | 2018-08-22 19:12:24 +0000 |
| commit | dc1451337d29d47b6312e23b6ad8391cc792e649 (patch) | |
| tree | 4252cc37f5289ee9341373820d6e302e04a19135 /src | |
| parent | 45890a5029d0fb65cd2d15689c7c173cc0dae61b (diff) | |
| download | boca-dc1451337d29d47b6312e23b6ad8391cc792e649.tar.gz boca-dc1451337d29d47b6312e23b6ad8391cc792e649.zip | |
src/.htaccess: Enable these conf when not on php-fpm
Signed-off-by: Bruno Cesar Ribas <brunoribas@gmail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/.htaccess | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/.htaccess b/src/.htaccess index 7c89b5b..99fda17 100644 --- a/src/.htaccess +++ b/src/.htaccess @@ -1,5 +1,7 @@ -php_flag output_buffering on -php_value memory_limit 1024M -php_value post_max_size 128M -php_flag magic_quotes_gpc off -php_value upload_max_filesize 128M +<IfModule !mod_proxy_fcgi.c> + php_flag output_buffering on + php_value memory_limit 1024M + php_value post_max_size 128M + php_flag magic_quotes_gpc off + php_value upload_max_filesize 128M +</IfModule> |