http3-ytproxy/nginx.conf
Fijxu 934e4b381c
All checks were successful
CI / build (push) Successful in 53s
http3 but now in docker for my invidious instance
2024-04-28 14:43:43 -04:00

19 lines
429 B
Nginx Configuration File

user www-data;
events {
worker_connections 1024;
}
http {
server {
listen 3000;
listen [::]:3000;
access_log off;
location / {
resolver 127.0.0.11;
set $backend "http3-proxy";
proxy_pass http://$backend:8080;
proxy_http_version 1.1; # to keep alive
proxy_set_header Connection ""; # to keep alive
}
}
}