felicity-lims/services/nginx/proxy/default.conf.template
2024-01-25 19:52:03 +02:00

13 lines
224 B
Text

upstream api {
server $PROXY_BACKEND:$PROXY_PORT;
}
server {
listen 80;
location / {
proxy_pass http://api;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}