Problems with HTTP/2

2015-09-22 Thread Aapo Talvensaari
I tried the 1.9.5 release with http2 and it worked fine, but Ajax request especially were problematic. I did get errors like: net::ERR_SPDY_COMPRESSION_ERROR And the status code was 0. With the former spdy support I didn't have any problems. I'm also using fastcgi and PHP5 in this server where I

Re: There is a newer OCSP response but was not provided by the server

2015-09-22 Thread 173279834462
The purpose of the ssl_stapling_file was to prime the cache. Without that file, openssl says "OCSP response: no response sent". For nginx to load the cache by itself, clients have to hit the same worker process a few times. I currently have 8 worker processes, which means that the server needs at l

Re: variable suggestion - msec_start

2015-09-22 Thread Reinis Rozitis
can i ask for a variable, $msec_start to provide a timestamp on which nginx was started? this way we could do some logging like $msec_start$connection to get a unique value, even after reload... Depending on the needs you could use $msec (current time with milliseconds resolution ) and/or $p

nginx-1.9.5

2015-09-22 Thread Maxim Dounin
Changes with nginx 1.9.5 22 Sep 2015 *) Feature: the ngx_http_v2_module (replaces ngx_http_spdy_module). Thanks to Dropbox and Automattic for sponsoring this work. *) Change: now the "output_buffers" directive uses two buffers by defau

variable suggestion - msec_start

2015-09-22 Thread schnix
Hi, can i ask for a variable, $msec_start to provide a timestamp on which nginx was started? this way we could do some logging like $msec_start$connection to get a unique value, even after reload... or does there exist a way we could do that already? thanks alex Posted at Nginx Forum: http:/

Nginx- files currently not available at first load

2015-09-22 Thread Milos
I have a problem with XenForo and I think it's up to my NGINX server configuration. The problem is that sometimes the Googlebot can not access to resources such as images or scripts. Googlebot says the images are currently not available. Example: Here is a Google screenshot: https://xenforo.com/

Re: There is a newer OCSP response but was not provided by the server

2015-09-22 Thread Maxim Dounin
Hello! On Tue, Sep 22, 2015 at 05:33:57AM -0400, 173279834462 wrote: > Hello, > > nginx is not updating the OCSP response cache. > > openssl says: > [...] > Cert Status: good > This Update: Sep 9 09:59:46 2015 GMT > Next Update: Sep 11 09:59:46 2015 GMT > > gnutls says "Ther

There is a newer OCSP response but was not provided by the server

2015-09-22 Thread 173279834462
Hello, nginx is not updating the OCSP response cache. openssl says: [...] Cert Status: good This Update: Sep 9 09:59:46 2015 GMT Next Update: Sep 11 09:59:46 2015 GMT gnutls says "There is a newer OCSP response but was not provided by the server". The configuration says:

Re: nginx 2,upstream question

2015-09-22 Thread vps4
nanaya Wrote: --- > Hi > > On Tue, Sep 22, 2015, at 04:59 PM, vps4 wrote: > > i have 2 backend server A & B, i want the upstream only works with > A, > > when A > > die then works with B, if A not die , only works with A > > how can i do > > >

Re: nginx 2,upstream question

2015-09-22 Thread vps4
no upstream backend { server A; server B backup; } this will works both of them i want only A B only works when A die Posted at Nginx Forum: http://forum.nginx.org/read.php?2,261712,261714#msg-261714 ___ nginx mailing list nginx@nginx.org http://mail

nginx 2,upstream question

2015-09-22 Thread vps4
i have 2 backend server A & B, i want the upstream only works with A, when A die then works with B, if A not die , only works with A how can i do Posted at Nginx Forum: http://forum.nginx.org/read.php?2,261712,261712#msg-261712 ___ nginx mailing list n

Re: nginx 2,upstream question

2015-09-22 Thread nanaya
Hi On Tue, Sep 22, 2015, at 04:59 PM, vps4 wrote: > i have 2 backend server A & B, i want the upstream only works with A, > when A > die then works with B, if A not die , only works with A > how can i do > this? upstream backend { server A; server B backup; } __