diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-10-24 15:08:11 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2005-10-24 15:08:11 +0000 |
commit | 08215fca08617c8fd56f416b56f8216f1d5090b3 (patch) | |
tree | 2dc4e77eb53393c690ef97c9b76b9cbc113815ca /conf | |
parent | 8115af1b3993d74c1b7fe1c9b287c1c190c19ea9 (diff) | |
download | nginx-08215fca08617c8fd56f416b56f8216f1d5090b3.tar.gz |
Changes with nginx 0.3.6 24 Oct 2005v0.3.6
*) Change: now the IMAP/POP3 proxy do not send the empty login to
authorization server.
*) Feature: the "log_format" supports the variables in the $name form.
*) Bugfix: if at least in one server was no the "listen" directive,
then nginx did not listen on the 80 port; bug appeared in 0.3.3.
*) Bugfix: if the URI part is omitted in "proxy_pass" directive, the
the 80 port was always used.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/nginx.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf index 542fda2d3..8d65445eb 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -34,6 +34,12 @@ http { index index.html index.htm; } + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 + # + #location ~ \.php$ { + # proxy_pass http://127.0.0.1; + #} + # deny access to .htaccess files # #location ~ /\.ht { |