add docker stuff

This commit is contained in:
2025-06-29 18:17:15 +03:00
parent 6c731b04d3
commit 765e445bbf
5 changed files with 80 additions and 0 deletions

19
nginx.conf Normal file
View File

@ -0,0 +1,19 @@
events {
worker_connections 1024;
}
http {
server {
listen 8080;
server_name localhost;
location /static/ {
alias /data/static/;
}
location / {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}
}