This commit is contained in:
Egor Matveev 2022-03-29 15:22:50 +03:00
parent 0cb0ee3aae
commit 82a956c0ae

View File

@ -1,7 +1,10 @@
http {
server { server {
listen 80; listen 80;
server_name a.com;
location / { location / {
proxy_pass http://web:8000/; proxy_pass http://web:8000/;
} }
} }
}