sprint/nginx/nginx.conf
Egor Matveev bc16c3fad3 nginx
2022-03-29 14:59:27 +03:00

7 lines
86 B
Nginx Configuration File

server {
listen 80;
location / {
proxy_pass http://web:8000/;
}
}