Delete nginx.conf
This commit is contained in:
parent
9f53e7a0f7
commit
9c28082e81
1 changed files with 0 additions and 18 deletions
18
nginx.conf
18
nginx.conf
|
@ -1,18 +0,0 @@
|
|||
user nginx;
|
||||
events {
|
||||
worker_connections 1000;
|
||||
}
|
||||
http {
|
||||
server {
|
||||
listen 3000;
|
||||
listen [::]:3000;
|
||||
access_log off;
|
||||
location / {
|
||||
resolver 127.0.0.11;
|
||||
set $backend "invidious";
|
||||
proxy_pass http://$backend:3000;
|
||||
proxy_http_version 1.1; # to keep alive
|
||||
proxy_set_header Connection ""; # to keep alive
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue