sprint/nginx/nginx.conf
Egor Matveev 59a2d2cdef nginx
2022-03-29 15:33:36 +03:00

12 lines
162 B
Nginx Configuration File

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