Initial commit

This commit is contained in:
ededov
2026-05-27 14:56:05 +03:00
commit 239efd40b0
6 changed files with 474 additions and 0 deletions

16
nginx/default.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://flask:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# Обработка статики (если добавишь позже)
location /static/ {
alias /app/static/;
}
}