sprint/nginx.conf
Egor Matveev fdd9bce6a4 nginx
2022-03-09 00:10:42 +03:00

11 lines
197 B
Nginx Configuration File

http {
upstream app_server {
server 127.0.0.1:8000 fail_timeout=0;
}
server {
listen 80;
location / {
proxy_pass http://app_server;
}
}
}