Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

20 lines
329 B
Plaintext

server {
listen 80;
root /var/www;
location / {
try_files $uri /index.html;
}
}
server {
server_name api.*;
location / {
proxy_pass http://api:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}