ftest-nginx-proxy/nginx.conf
Aravinth Manivannan 4f1915030c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: listen on port 80
2023-10-04 19:16:30 +05:30

14 lines
366 B
Nginx Configuration File

server {
listen 80;
server_name ftest default_server;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://ftest_backend:29130/;
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
proxy_redirect off;
}
}