sprint/nginx.conf
Egor Matveev 1bafab6559 nginx
2022-03-09 11:30:44 +03:00

13 lines
210 B
Nginx Configuration File

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