changed the whole structure

This commit is contained in:
2023-10-01 03:34:35 +02:00
parent 99dc9d3e93
commit e32b25845e
40 changed files with 7489 additions and 0 deletions

10
nginx/default.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://nodejs:5000;
}
}