njs-0.3.7 (no replies)
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release proceeds to extend the coverage of ECMAScript specifications. Notable new features: - Object.assign() method: :...
View ArticleHow to avoid sending incomplete request data to backend if 499 error (1 reply)
Hello... Few days ago I have had this problem... let me explain with log lines: X.X.X.X - - [16/Nov/2019:04:36:17 +0100] "POST /api/budgets/new HTTP/2.0" 200 2239 "----" "Mozilla/5.0 (iPhone; CPU...
View ArticleRe: [nginx-announce] nginx-1.17.6 (no replies)
Hello Nginx users, Now available: Nginx 1.17.6 for Windows https:// kevinworthington.com/nginxwin1176 https://t.co/iyCq763Nwe?amp=1 (32-bit and 64-bit versions) These versions are to support legacy...
View Articlefeature request: warn when domain name resolves to several addresses (1 reply)
I noticed that in ngx_http_proxy_module proxy_pass http://localhost:8000/uri/; "If a domain name resolves to several addresses, all of them will be used in a round-robin fashion. In addition, an...
View ArticleNGINX configuration with two backends (without load balancing) and NGINX -...
Hi all, Question 1 Is it possible to have NGINX reverse proxy to multiple MySQL servers listening on the same port using different names like you can with http? We don't want to perform any load...
View Articletwo identical keycloak servers + nginx as reverse proxy (no replies)
Hello, Can somebody enlighten me please? i have two identical keycloak servers running in HA mode via DNS discovery keycloak1.my.domain & keycloak2.my.domain the dns discovery record is:...
View Articleupstream_response_length and upstream_addr can't work (no replies)
hi all: When I use module of slice, upstream_response_length and upstream_addr can't work. nginx.conf : ######################################################################### include mime.types;...
View ArticleAre modules built with --with-compat compatible across minor versions of...
If I build a dynamic module against, say nginx 1.12.2 with `--with-compat`, will it work with, say nginx 1.12.1 (assuming --with-compat all around) I assume not, because I found this in ngx_module.c,...
View ArticleAdd new Directive to existing nginx module (no replies)
Is it possible to add new directive to existing nginx modules? While trying to add i am getting the error. "directive is duplicate in <nginx.conf>"
View ArticleOffload TCP traffic to another process (2 replies)
Dear experts, We are evaluating nginx as a platform for the product of our new startup company. Our use-case requires a TCP proxy that will terminate TLS, which nginx handles very well. However, we...
View Articlessl_client_fingerprint and sha256 (no replies)
Hi everyone, this is my first post on this mailing list, so bear with me :-) Sorry if my question is silly, but I haven't found any way to use a sha256 fingerprint for client certificate validation in...
View Articleproxy_pass in post_action location does not send any http request (no replies)
Hi I am trying to configure NGINX to send another http request after successful completion of the original proxied request, in order to count statistics etc' I am using post_action with proxy_pass as...
View Article'Lost' the default config location (no replies)
Noob here , so please bear with me. I have a reverse proxy working so if I https://mysite.com/footyscore the page will launch. However if I browse to http or https://mysite.com the default welcome to...
View ArticleServing a subdirectory (no replies)
Hi! I'm a little bit lost now, since various configurations tried just dont work. None of them. I have: server { listen 443 default_server ssl; listen [::]:443 default_server ssl; server_name...
View ArticleVarious errors while configuring nginx for certificate-based client auth (2...
Hi guys, I'm using nginx in form of container (docker.io/nginx), version 1.17.3-alpine I'm trying to setup my nginx to do TLS auth and then forward packets to another host in the network. As part of...
View ArticleNginx map - use variable multiple times or use multiple variables (1 reply)
Hello, We use Nginx map module to sent traffic to different upstreams based on the HTTP header: map $http_flow $flow_upstream { default "http://flow-dev"; prod "http://flow-prod"; test...
View ArticleRD Gateway thru Reverse Proxy (1 reply)
I have multiple servers internal that need to use port 443 due to requirements of the applications and vendors. One is a Windows 2016 Essentials server the other a custom web app on Linux that requires...
View ArticleGetting started (no replies)
I edited the config file as follows: http { server { location / { root /www; } } .... } I then reloaded the config file with sudo nginx -s reload. I created a test file at /www/index.html then when I...
View ArticleNGINX only for forwarding to LAN (no replies)
Hi@all, first of all a "hello" to the round. I am new here :-) I want to set up NGINX on my firewall/router (IPFire). But only as reverse proxy. There are no websites running on the IPFire. The IP-Fire...
View ArticleDumping request metadata to local port (no replies)
Hi, I am relatively new to NGINX module development so I apologize if the question may seem trivial. I would like to dump data/metadata about certain requests that my nginx server receives for a...
View Article