From 9c28082e81b3d5b9e31fc043bb5b07cdfb43d28c Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sat, 5 Apr 2025 14:23:27 +0200 Subject: [PATCH] Delete nginx.conf --- nginx.conf | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index c93f816..0000000 --- a/nginx.conf +++ /dev/null @@ -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 - } - } -}