KIMB-technologies 80d9d90aaa
All checks were successful
Build and push Docker image at git tag / build (push) Successful in 26m48s
Begin Management in Docker
2024-10-04 21:34:09 +02:00

27 lines
514 B
Plaintext

server {
listen 80 default_server;
server_name _;
root /ums-agenten/plattform/web/public/;
index index.html;
location / {
try_files $uri $uri/ @dynamic;
}
location @dynamic {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_redirect off;
proxy_buffering off;
proxy_pass http://unix:/tmp/uvicorn.sock;
}
}