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 @@
server {
listen 80;
http {
server {
listen 80;
server_name a.com;
location / {
proxy_pass http://web:8000/;
location / {
proxy_pass http://web:8000/;
}
}
}