sprint/nginx.conf
Egor Matveev 6806c09856 nginx
2022-03-09 00:47:14 +03:00

15 lines
236 B
Nginx Configuration File

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