diff options
author | Renato Botelho <renato@netgate.com> | 2016-07-18 15:40:55 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-07-18 15:41:10 -0300 |
commit | d590613260d09fcfefb8ca894762888f3fc06def (patch) | |
tree | 190a58877f5306e9dfa33b9ad07105951f87008f | |
parent | 7147142e7feb1b5698fbf6004907aad19b8de4ca (diff) | |
download | pfsense-d590613260d09fcfefb8ca894762888f3fc06def.zip pfsense-d590613260d09fcfefb8ca894762888f3fc06def.tar.gz |
Set HTTP_PROXY to empty as recommended at https://httpoxy.org/#fix-now
-rw-r--r-- | src/etc/inc/system.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index 7559b5c..8ba9265 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -1377,6 +1377,8 @@ EOD; fastcgi_pass unix:{$g['varrun_path']}/php-fpm.socket; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + # Fix httpoxy - https://httpoxy.org/#fix-now + fastcgi_param HTTP_PROXY ""; fastcgi_read_timeout 180; include /usr/local/etc/nginx/fastcgi_params; } |