IMAP /SMTP SSL Reverse PROXY without Authentification (no replies)
_______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx
View Articlekeep-alive to backend + non-idempotent requests = race condition? (no replies)
Hey, I've been haunted by this for quite some time, seen it in different deployments, and think might make for some good ol' mailing list discussion. When - using keep-alive connections to a backend...
View ArticleNginx overwrite existing cookies with add_header (1 reply)
So i am using Nginx to set a header now my PHP app sets this header too but it sets the cookie with a domain of ".networkflare.com" Nginx keeps setting it as "www.networkflare.com" i need to overwrite...
View Article[ANN] OpenResty 1.11.2.1 released (no replies)
Hi folks, I am excited to announce the new formal release, 1.11.2.1, of the OpenResty web platform based on NGINX and LuaJIT: https://openresty.org/en/download.html Both the (portable) source code...
View Articlenginx-http-concat module (1 reply)
I know this is a bit off topic, but has anyone got this module to work? I have added concat_types text/css application/x-javascript application/javascript; to nginx.conf, scope http added location...
View Articlehow to completely disable request body buffering (no replies)
Hi all, for one of our products we have chosen nginx as our webserver and using fastCGI to talk to upstream(application) layer. We have a usecase where in the client sends huge payload typically in MB...
View ArticleIMAP /SMTP SSL Reverse PROXY without Authentification (1 reply)
Hi Guys, maybe what I ma going to aks is a dumb question, if so please direct me at the ressources needed; I got the project to setup a IMAP Proxy for our institution, if so please direct me at the...
View Articleadd coroutines for nginx (no replies)
read file is block, nginx can Using coroutines implementation file to read and write。(write log file and read cache file)
View ArticleNginx | fastcgi_cache_valid dynamic based on request (3 replies)
So I have been trying to make the fastcgi_cache_valid value based on user request. if ($request_uri ~ "/url1" ) { set $cachetime "any 5s"; } if ($request_uri ~ "/url2" ) { set $cachetime "any 5m"; }...
View Articleinternal location keepalive_requests issue (2 replies)
location /hls { error_page 404 = @hls; keepalive_requests 1000; } location @hls { # Serve HLS fragments types { application/vnd.apple.mpegurl m3u8; video/mp2t ts; } root /tmp; add_header Cache-Control...
View ArticleLocation Alias not working (3 replies)
Hi, I've defined a location alias in my nginx.conf: server { listen 80; server_name example.org www.example.org; [...] location /foo/ { alias /var/www/foo/; } } Even the directory /var/www/foo exists,...
View ArticleNginx real_ip module doesn't work in some conditions (1 reply)
So I have Nginx proxy and some servers running behind it. I need to know real users IP not proxy, so I using real_ip module. Everything is working as expected, but if I configure vhost like...
View ArticleHow to disable request pipelining on nginx upstream (1 reply)
Hi, Does anyone know a way to disable HTTP request pipelining on a same upstream backend connection? Let's say we have the below upstream backend that is configured with keepalive and no connection...
View Articlemulti server addresses appear in variable $upstream_addr which was not...
Hello! It is pretty strange that there was two upstream servers in $upstream_addr. It seems two servers received request and both had a respose. Client received the response which took less duration...
View Articledisable .php files uploads using php (php-fpm) (no replies)
Is any way to get the body of a php post upload to match using regex the filename of a php upload? I want to block file uploads with .php extension. I found that I can do it with nasxi but I want to...
View ArticleNginx SNI and Letsencrypt on FreeBSD; Wrong certificate? (1 reply)
Hi there, I have a VPS with 14 domains and I setup letskencrypt to automatically retrieve a separate certificate for each domain with all sub-domains included. So, I have 14 certs. Obviously, putting...
View ArticleNginx multiple upstream map conditions (no replies)
So this is a fun one. As allot of people probably already know you can't use "IF" on upstream values since if conditions are executed before any "$upstream_" conditions. But with a map directive it...
View ArticleNGINX to support websocket client on the same port (no replies)
A quick question, Does Nginx support websocket client. I have a webserver that uses NGINX and i use a websocket server for which NGINX acts as proxy. In the same port , can i use websocket client to...
View ArticleLog the headers sent by nginx to upstream server (1 reply)
My client sends a request to nginx with a http header set. This header is overwritten by nginx before passing along the reqest to the downstream server. I want to log the header after modification by...
View Articlelog status actually not real status (1 reply)
Nginx would log status to 200 after response header had sent when upstream prematurely closed connection I think nginx should log status to 502, even though client recv 200 static u_char *...
View Article