Files
rither/nginx/sites-available/backend.local.conf
2025-10-27 14:40:01 +05:00

8 lines
143 B
Plaintext

server {
listen 8080;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:13200;
}
}