This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
covid19-dashboard/nginx/appseed-app.conf
2021-05-14 14:41:00 +05:30

11 lines
205 B
Plaintext

server {
listen 85;
location / {
proxy_pass http://localhost:5005/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}