Added directories for docker containers
This commit is contained in:
parent
32b96dc4d4
commit
46d2ac88fc
11
nginx/conf.d/default.conf
Normal file
11
nginx/conf.d/default.conf
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user