Re: nginx last version on windows

2020-09-03 Thread jasonsx
thank you i will try it now thanks for you time Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289290,289308#msg-289308 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx last version on windows

2020-09-03 Thread itpp2012
There's no point in trying, that module's code is full of errors and too many hacks. Your better of with Lua which is embedded in our version, see https://www.gakhov.com/articles/implementing-api-based-fileserver-with-nginx-and-lua.html Posted at Nginx Forum: https://forum.nginx.org/read.php?2,2

Re: nginx last version on windows

2020-09-03 Thread jasonsx
thanks for you replay yep i'm already download nginx src and trying to compiler it with the module but i'm stuck in perl 5.10.0 and mingw is using 5.8.8 Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289290,289303#msg-289303 ___ nginx mai

Re: Worker process core dumped

2020-09-03 Thread Maxim Dounin
Hello! On Thu, Sep 03, 2020 at 07:19:08AM -0400, allenhe wrote: > to be more self assurance, > can somebody confirm that the "r" is no longer accessable after this? >ngx_http_free_request(r, 0); The ngx_http_free_request() function frees the request, and using "r" after the

Re: nginx last version on windows

2020-09-03 Thread Francis Daly
On Thu, Sep 03, 2020 at 06:55:56AM -0400, jasonsx wrote: Hi there, For what it's worth: to handle file uploads in nginx, you need nginx + your own code; or nginx + this upload module + your own code. Using this module might make the "your own code" part a bit easier to write; but it will still

Re: Does NGINX read auth_basic_user_file on every connection?

2020-09-03 Thread Maxim Dounin
Hello! On Thu, Sep 03, 2020 at 10:55:27AM +0530, RA wrote: > How does NGINX process auth_basic_user_file? > > 1) Does it read it in entirety on every connection? No. > 2) Does it read it line by line on every connection and stops > when a match is found? No, though what nginx does is somewha

Re: Worker process core dumped

2020-09-03 Thread allenhe
to be more self assurance, can somebody confirm that the "r" is no longer accessable after this? ngx_http_free_request(r, 0); thank you in advance! Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289296,289299#msg-289299 ___

Re: Worker process core dumped

2020-09-03 Thread allenhe
I was wrong, the request object was created on the fly with the pool object. here the pool was detroyed before the r was referenced which caused the core dump. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289296,289298#msg-289298 ___ nginx

Re: nginx last version on windows

2020-09-03 Thread jasonsx
thanks you this will be great :) Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289290,289297#msg-289297 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Worker process core dumped

2020-09-03 Thread allenhe
version: 1.17.8 debug log: 2020/09/03 14:09:21 [error] 320#320: *873195 upstream timed out (110: Connection timed out) wh

Re: nginx last version on windows

2020-09-03 Thread itpp2012
I will have a look to see if this can be included in our next version. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289290,289295#msg-289295 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx last version on windows

2020-09-03 Thread jasonsx
thank you for fast replay well i was search alot and alot for the binary this include the module in it but i can't found any of nginx binray already download alot of binary from website and fail with it i'm a windows user so the linux will be hard to me thank Posted at Nginx Forum: https://

Re: nginx last version on windows

2020-09-03 Thread Francis Daly
On Thu, Sep 03, 2020 at 02:18:12AM -0400, jasonsx wrote: Hi there, > and i got this > 2020/09/03 08:02:21 [emerg] 8252#1152: unknown directive "upload_pass" in > C:\nginx-1.19.2/conf/vhost/ug04.cn.center.conf:43 That means that the nginx binary that you are using does not include a module that u