From 46d2ac88fcf766c6ad306536345a54c9bcad5893 Mon Sep 17 00:00:00 2001 From: ChristopherDiesch Date: Thu, 27 Mar 2025 14:46:06 -0600 Subject: [PATCH] Added directories for docker containers --- nginx/conf.d/default.conf | 11 +++++++++++ uwsgi.ini | 0 2 files changed, 11 insertions(+) create mode 100644 nginx/conf.d/default.conf create mode 100644 uwsgi.ini diff --git a/nginx/conf.d/default.conf b/nginx/conf.d/default.conf new file mode 100644 index 0000000..1fd56b5 --- /dev/null +++ b/nginx/conf.d/default.conf @@ -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; + } +} \ No newline at end of file diff --git a/uwsgi.ini b/uwsgi.ini new file mode 100644 index 0000000..e69de29