hopes and dreams

This commit is contained in:
Patrick 2024-11-12 22:07:35 +01:00
parent e3b1ac8bd1
commit 8f021fabf3
9 changed files with 23 additions and 26 deletions

10
nginx Normal file
View file

@ -0,0 +1,10 @@
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;
}
}