Re: Reverse proxy

2018-09-04 Thread tokers
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

Re: Openssl Dynamic engine support for Nginx

2018-08-22 Thread 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

Re: Quick successive reload makes "bind () xxxx failed, Address already in use" error

2018-01-23 Thread tokers
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

Re: Required help.

2018-01-21 Thread tokers
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

Re: nginx 1.12.2 with brotli compression truncates big files

2018-01-12 Thread tokers
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

Re: Example body filter hangs when modified a little bit - request is not terminating.

2018-01-10 Thread tokers
Hi! what’s the corresponding response headers of your browser? ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to log all headers in nginx?

2017-06-06 Thread tokers
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

Re: Beginner question:Nginx request_uri meaning ?

2017-01-23 Thread tokers
$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.