Re: Nginx SSL reverse proxy with independent authentication for each backend web server

2020-03-19 Thread Thomas Ward
You can specify different auth_basic configurations per server or per location match. Refer to the documentation - http://nginx.org/en/docs/http/ngx_http_auth_basic_module.html - which shows that the auth_basic config options can be at the http, server, location, or limit_except levels of the conf

Nginx SSL reverse proxy with independent authentication for each backend web server

2020-03-19 Thread Roberto Carna
Hi people, I wanna use NGINX as a SSL reverse proxy for several backends Apache web servers which listens on port TCP/8080 and TCP/9090. The NGINX reverse proxy must have one independent authentication for each backend web server: NGINX -- Auth 1 --- Web server 1 ports 8080/9090 -- A