Hello!
Have you tried to detect the network interconnection
between these dockers?
The default proxy connect timeout is 60s, it’s large enough,
this problem should not be issued by Nginx itself.
Best Regards
Alex Zhang
https://github.com/tokers
Hello!
How about using the openssl.cnf to load your engine?
https://www.openssl.org/docs/manmaster/man5/config.html
Alternatively, you may want to reference the Intel/async_mode_nginx.
https://github.com/intel/asynch_mode_nginx
Best Regards
Alex Zhang
https://github.com/tokers
On August 22
Hello!
> I have a script runs two successive reloads, the first one is to remove a
listen port from the stream block, and the second one is to add the same
port back to the stream block. It is observed that > most time the script
would run into "bind() failed, Address already in use" error. A
Hi!
Is your SELinux policy results in this? Check the status of SELinux may can
help you.
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Hi!
> 188.210.x.x - - [12/Jan/2018:09:47:56 +0100] "GET
>
/apps/notes/js/vendor/angular/angular.js?v=c097638827ed950b562e4489ee4b6777-0
> HTTP/2.0" 200 236150 "-" "Mozilla/5.0 (Windows NT 10.0;
Win64; x64;
> rv:58.0) Gecko/20100101 Firefox/58.0"
> If I transfer the same file without br compress
Hi!
what’s the corresponding response headers of your browser?
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
You can traverse the list r->headers_in.headers.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,251159,274725#msg-274725
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
$request_uri is a built-in variable of Nginx, which meaning is the pure uri
in HTTP request line without any process.
For instance, if the HTTP request line is "GET /path/to//a.jpg HTTP/1.1",
the $request_uri is "/path/to//a.jpg". But the $uri will be "/path/to/a.jpg"
if merge_slashes is enable.