This commit is contained in:
Egor Matveev
2022-03-29 14:59:27 +03:00
parent 001e3c8ab0
commit bc16c3fad3
2 changed files with 23 additions and 2 deletions

7
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,7 @@
server {
listen 80;
location / {
proxy_pass http://web:8000/;
}
}