Moreover, windows version of how to use this patch does?by peacock - Nginx Mailing List - English
Igor Sysoev Wrote: ------------------------------------------------------- > On Tue, Jul 28, 2009 at 11:49:53PM -0400, peacock > wrote: > > > Hope to solve this problem as soon as possible > :) > > Try the attached patch. > > > -- > Igor Sysoev > http://sysoev.ru/en/ thank you:) But why does not this patch into the release as well?by peacock - Nginx Mailing List - English
Hope to solve this problem as soon as possible :)by peacock - Nginx Mailing List - English
Unfortunately, so far(0.8.7), not to solve this problem :( I read the source code, ngx_http_static_module.c documents found this piece of code inside if (r->method & NGX_HTTP_POST) { return NGX_HTTP_NOT_ALLOWED; }by peacock - Nginx Mailing List - English
Changes with nginx 0.8.0 02 Jun 2009 *) Feature: the "keepalive_requests" directive. *) Feature: the "limit_rate_after" directive. Thanks to Ivan Debnar. *) Bugfix: XLST filter did not work in subrequests. *) Bugfix: in relative paths handling in nginx/Windows. *) Bugfix: in proxy_store, fastcgby peacock - Nginx Mailing List - English
Igor Sysoev Wrote: > > Try the attached patch, it allows to POST to > static files. > Probably I will include it in 0.8.0. > > > -- > Igor Sysoev > http://sysoev.ru/en/ I'm sorry, I do not see your reply:) I use Windows, so I do not know how to run the patch. Hope to be able to add this feature 0.8.0:) thank you very much!by peacock - Nginx Mailing List - English
Unfortunately, this workaround is still not working properly :( Response: <html> <head><title>500 Internal Server Error</title></head> <body bgcolor="white"> <center><h1>500 Internal Server Error</h1></center> <hr><center>nginx/0.7.59</center> </body> </html>by peacock - Nginx Mailing List - English
sorry, my english is poor, I have listed some of the information error_page 405 =200 @405; location @405 { root /htdocs; #proxy_pass http://localhost:8080; } (ajax)POST: http://localhost/....../index.js Response: <html> <head><title>405 Not Allowed</title></head> <body bgcolor="white"> <center><h1>405 Not Allowed<by peacock - Nginx Mailing List - English
When I post when a JavaScript file, "405 not allowed" error will appear. if use proxy, it can work. error_page 405 =200 @405; location @405 { root /htdocs; proxy_pass http://localhost:8080; } but I do not want to use proxy, just want to use Nginx, can to achieve it?by peacock - Nginx Mailing List - English