sprint/nginx/nginx.conf
Egor Matveev 05349a79c8 nginx
2022-03-29 15:28:16 +03:00

11 lines
165 B
Nginx Configuration File

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