Re: nginx-1.9.11

2016-02-10 Thread Maxim Dounin
Hello! On Wed, Feb 10, 2016 at 09:30:49PM -0500, qbitx wrote: > I'm having issues with 1.9.11. With the exact same build configuration as I > used for 1.9.10, and the exact same config files for nginx - I am now > getting this when I run nginx -t at the command-line: > > nginx: [emerg] unknown

Re: nginx-1.9.11

2016-02-10 Thread qbitx
I'm having issues with 1.9.11. With the exact same build configuration as I used for 1.9.10, and the exact same config files for nginx - I am now getting this when I run nginx -t at the command-line: nginx: [emerg] unknown directive "charset" in /etc/nginx/nginx.conf:62 nginx: configuration file

Re: does proxy_ssl_verify verify server name?

2016-02-10 Thread Maxim Dounin
Hello! On Wed, Feb 10, 2016 at 04:25:06PM +, Richard Kearsley wrote: > Hello > I'm trying to enable this option on a proxy_pass location: > > proxy_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt; > proxy_ssl_verify on; > proxy_ssl_verify_depth 9 > > /etc/ssl/certs/ca

1.9.11 does not build

2016-02-10 Thread Steve
Hello all,   when I build 1.9.11 then somehow ngx_http_gzip_module is missing. Does anyone else have this issue as well?   // Steve ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

does proxy_ssl_verify verify server name?

2016-02-10 Thread Richard Kearsley
Hello I'm trying to enable this option on a proxy_pass location: proxy_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt; proxy_ssl_verify on; proxy_ssl_verify_depth 9 /etc/ssl/certs/ca-certificates.crt is compiled by update-ca-certificates (http://manpages.ubuntu.com/manpa

Re: Set last modified out header

2016-02-10 Thread Maxim Dounin
Hello! On Wed, Feb 10, 2016 at 03:44:13AM -0500, Ortal wrote: > Hello, > I am building my own NGINX module, when I try to set the last modified out > header I have a struct timespec which I need to convert to last modified. > When I set the last modified with the tv_sec the last modified get inva

Re: nginx-1.9.11 -- "Floating point exception" on exec after upgrading 1.9.10 -> 1.9.11

2016-02-10 Thread Maxim Dounin
Hello! On Wed, Feb 10, 2016 at 12:15:53PM +0100, Lukas Tribus wrote: > > > I also get a compile error related to Pagespeed: > > [...] > > /root/ngx_pagespeed-release-1.10.33.4-beta/src/ngx_pagespeed.cc:3148:1: > > error: deprecated conversion from string constant to ‘char*’ > > [-Werror=write-st

RE: nginx-1.9.11 -- "Floating point exception" on exec after upgrading 1.9.10 -> 1.9.11

2016-02-10 Thread Lukas Tribus
> I also get a compile error related to Pagespeed: > [...] > /root/ngx_pagespeed-release-1.10.33.4-beta/src/ngx_pagespeed.cc:3148:1: > error: deprecated conversion from string constant to ‘char*’ > [-Werror=write-strings] > }; > ^ > cc1plus: all warnings being treated as errors Apply this patch:

Re: Nginx for media streaming

2016-02-10 Thread maziar
is there any better help for open source version ? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264416,264461#msg-264461 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx-1.9.11 -- "Floating point exception" on exec after upgrading 1.9.10 -> 1.9.11

2016-02-10 Thread jshare
I also get a compile error related to Pagespeed: -o objs/addon/src/ngx_message_handler.o \ /root/ngx_pagespeed-release-1.10.33.4-beta/src/ngx_message_handler.cc cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g -march=i686 -D_GLIBCXX_USE_CXX

Set last modified out header

2016-02-10 Thread Ortal
Hello, I am building my own NGINX module, when I try to set the last modified out header I have a struct timespec which I need to convert to last modified. When I set the last modified with the tv_sec the last modified get invalid date. How can I set the last modified correctly? Posted at Nginx