python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
dynamically change nginx proxy pass
Hi i want to set a dynamic proxy pass in nginx. $myvar will take values such as ops/dev/qa etc. But when i validate the above nginx configuration file with nginx -t, i get "proxy_set_header"...
Prageeth Athulathmudali
Votes: 0
Answers: 1
NGINX location case sensitive
server {
listen *:443 ssl;
server_name www.example.com;
location /Rst {
proxy_pass http://127.0.0.1:5026/Rst;
expires -1;
}
The user...
s k
Votes: 0
Answers: 1
Run jenkins behind nginx
i want to run jenkins behind nginx tried following step
location /jenkins {
rewrite ^/jenkins(.*) $1 break;
proxy_set_header Host $http_host;
...
ashok
Votes: 0
Answers: 0
Ngixn rewrite and reverse proxy to docker container
I am running 3 services using docker compose on 3 ports: svc1:8081, svc2:8082, and svc3:8083 respectively. I have nginx installed on my host machine (not as a docker container), I want to reverse prox...

Farhaan Patel
Votes: 0
Answers: 1