jet-search/nginx

10 lines
196 B
Text
Raw Normal View History

2024-11-11 20:45:16 +01:00
server {
listen 80;
server_name _;
location / {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}