sprint/nginx.conf
Egor Matveev 3bcfacb420 nginx
2022-03-09 00:36:10 +03:00

15 lines
236 B
Nginx Configuration File

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