inv/nginx.conf

19 lines
426 B
Nginx Configuration File
Raw Permalink Normal View History

2024-04-27 18:25:22 -04:00
user www-data;
events {
2024-04-27 20:10:12 -04:00
worker_connections 1024;
2024-04-27 18:25:22 -04:00
}
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
}
}
}