Added directories for docker containers

This commit is contained in:
ChristopherDiesch 2025-03-27 14:46:06 -06:00
parent 32b96dc4d4
commit 46d2ac88fc
2 changed files with 11 additions and 0 deletions

11
nginx/conf.d/default.conf Normal file
View File

@ -0,0 +1,11 @@
server {
listen 80;
server_name yourdomain.com; # Replace with your domain
location / {
proxy_pass http://uwsgi: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;
}
}

0
uwsgi.ini Normal file
View File