[nginx] Core: store and dump processed configuration.

2015-06-16 Thread Vladimir Homutov
details: http://hg.nginx.org/nginx/rev/1b7e246e6b38 branches: changeset: 6187:1b7e246e6b38 user: Vladimir Homutov v...@nginx.com date: Thu May 14 18:54:27 2015 +0300 description: Core: store and dump processed configuration. If the -T option is passed, additionally to configuration

[nginx] Polished the recent change to the manpage.

2015-06-16 Thread Ruslan Ermilov
details: http://hg.nginx.org/nginx/rev/54b10b289f0f branches: changeset: 6189:54b10b289f0f user: Ruslan Ermilov r...@nginx.com date: Tue Jun 16 16:52:13 2015 +0300 description: Polished the recent change to the manpage. diffstat: docs/man/nginx.8 | 4 +++- 1 files changed, 3

[nginx] release-1.9.2 tag

2015-06-16 Thread Maxim Dounin
details: http://hg.nginx.org/nginx/rev/f96689414078 branches: changeset: 6191:f96689414078 user: Maxim Dounin mdou...@mdounin.ru date: Tue Jun 16 17:49:40 2015 +0300 description: release-1.9.2 tag diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8

[nginx] Disabled duplicate http, mail, and stream blocks.

2015-06-16 Thread Vladimir Homutov
details: http://hg.nginx.org/nginx/rev/78c06e5e1d76 branches: changeset: 6193:78c06e5e1d76 user: Vladimir Homutov v...@nginx.com date: Tue Jun 16 23:28:38 2015 +0300 description: Disabled duplicate http, mail, and stream blocks. Such configurations have very limited use, introduce

[nginx] Stream: the proxy_bind directive.

2015-06-16 Thread Vladimir Homutov
details: http://hg.nginx.org/nginx/rev/4dcffe43a7ea branches: changeset: 6183:4dcffe43a7ea user: Vladimir Homutov v...@nginx.com date: Tue Jun 16 09:02:45 2015 +0300 description: Stream: the proxy_bind directive. diffstat: src/stream/ngx_stream_proxy_module.c | 57

Content-Type

2015-06-16 Thread Witold Filipczyk
Hi, ?php header('Content-Type: text/html;'); ? breaks proper Content-Type detection. At least in the 1.6.3 version. ___ nginx-devel mailing list nginx-devel@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx-devel

[nginx] Stream: client-side PROXY protocol.

2015-06-16 Thread Roman Arutyunyan
details: http://hg.nginx.org/nginx/rev/fa663739e115 branches: changeset: 6184:fa663739e115 user: Roman Arutyunyan a...@nginx.com date: Tue Jun 16 13:45:16 2015 +0300 description: Stream: client-side PROXY protocol. The new directive proxy_protocol toggles sending out PROXY protocol

[nginx] Core: renamed ngx_proxy_protocol_parse to ngx_proxy_prot...

2015-06-16 Thread Roman Arutyunyan
details: http://hg.nginx.org/nginx/rev/a420cb1c170b branches: changeset: 6185:a420cb1c170b user: Roman Arutyunyan a...@nginx.com date: Tue Jun 16 13:45:19 2015 +0300 description: Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read. The new name is consistent with the

RE: Content-Type

2015-06-16 Thread Lukas Tribus
Hi, ?php header('Content-Type: text/html;'); Thats invalid. Either: text/html; charset=iso-8859-1 or text/html but not with a trailing semicolon. breaks proper Content-Type detection. ... in a Browser, you mean? At least in the 1.6.3 version. What has nginx to do with it and why is

Re: Content-Type [PATCH]

2015-06-16 Thread Valentin V. Bartenev
On Tuesday 16 June 2015 13:35:55 Witold Filipczyk wrote: On Tue, Jun 16, 2015 at 12:37:39PM +0200, Lukas Tribus wrote: Hi, ?php header('Content-Type: text/html;'); Thats invalid. Either: text/html; charset=iso-8859-1 or text/html but not with a trailing semicolon.