sprint/nginx/nginx.conf
Egor Matveev 82a956c0ae nginx
2022-03-29 15:22:50 +03:00

10 lines
151 B
Nginx Configuration File

http {
server {
listen 80;
server_name a.com;
location / {
proxy_pass http://web:8000/;
}
}
}