sprint/nginx.conf
Egor Matveev e2dd2e1052 nginx
2022-03-10 00:56:10 +03:00

12 lines
182 B
Nginx Configuration File

events {}
http {
include mime.types;
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:8000; #/$1$is_args$args;
}
}
}