ftest-nginx-proxy/nginx.conf
Aravinth Manivannan 34f7b11ece
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: import from ForgeFlux/ftest/nginx
2023-10-03 23:36:52 +05:30

14 lines
368 B
Nginx Configuration File

server {
listen 9000;
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;
}
}