21 lines
470 B
Plaintext
21 lines
470 B
Plaintext
user www-data;
|
|
events {
|
|
worker_connections 1000;
|
|
}
|
|
http {
|
|
server {
|
|
listen 3000;
|
|
listen [::]:3000;
|
|
server_name iv.datura.network;
|
|
access_log off;
|
|
location / {
|
|
#resolver 127.0.0.11;
|
|
#set $backend "invidious";
|
|
proxy_pass http://invidious:3000;
|
|
proxy_http_version 1.1; # to keep alive
|
|
proxy_set_header Connection ""; # to keep alive
|
|
}
|
|
}
|
|
}
|
|
|