Files
rither/nginx/templates/sites-available/backend.local.conf.template
2025-10-27 14:43:57 +05:00

8 lines
143 B
Plaintext

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