From 6b544b01aca77b9062c205463279b4330c8d38ee Mon Sep 17 00:00:00 2001 From: root Date: Wed, 18 Sep 2024 04:47:41 -0300 Subject: [PATCH] Remove unused folders --- invidious/http3-proxy/docker-compose.yml | 56 --------------------- invidious/http3-proxy/nginx-unix.conf | 21 -------- invidious/http3-proxy/nginx.conf | 22 -------- invidious/inv_sig_helper/docker-compose.yml | 18 ------- invidious/inv_sig_helper/nginx.conf | 15 ------ 5 files changed, 132 deletions(-) delete mode 100644 invidious/http3-proxy/docker-compose.yml delete mode 100644 invidious/http3-proxy/nginx-unix.conf delete mode 100644 invidious/http3-proxy/nginx.conf delete mode 100644 invidious/inv_sig_helper/docker-compose.yml delete mode 100644 invidious/inv_sig_helper/nginx.conf diff --git a/invidious/http3-proxy/docker-compose.yml b/invidious/http3-proxy/docker-compose.yml deleted file mode 100644 index 85211aa..0000000 --- a/invidious/http3-proxy/docker-compose.yml +++ /dev/null @@ -1,56 +0,0 @@ -services: - http3-proxy: - image: git.nadeko.net/fijxu/http3-proxy:latest - #container_name: invidious-http3-proxy - network_mode: "container:gluetun" - restart: unless-stopped - environment: - DISABLE_WEBP: 1 - #volumes: - #- http3-socket:/app/socket:rw - #deploy: - #replicas: 1 - # networks: - # gluetun_network: - # ipv4_address: 172.80.0.85 - - # http3-proxy-test: - # image: git.nadeko.net/fijxu/http3-proxy:latest - # restart: unless-stopped - # environment: - # DISABLE_WEBP: 1 - # volumes: - # - http3-proxy-socket:/app/socket:rw - - # http3-proxy-nginx: - # image: nginx:latest - # restart: unless-stopped - # volumes: - # - ./nginx.conf:/etc/nginx/nginx.conf:ro - # depends_on: - # - http3-proxy - # ports: - # - "127.0.0.1:10012:3000" - # - "100.64.0.4:10012:3000" - # - # http3-proxy-nginx-unix: - # image: nginx:latest - # restart: unless-stopped - # volumes: - # - ./nginx-unix.conf:/etc/nginx/nginx.conf:ro - # - type: bind - # source: /run/http3-proxy-nginx - # target: /tmp - # depends_on: - # - http3-proxy - -networks: - default: - name: invidious - external: true - gluetun_network: - external: true - -volumes: - http3-proxy-socket: - name: "http3-proxy-socket" diff --git a/invidious/http3-proxy/nginx-unix.conf b/invidious/http3-proxy/nginx-unix.conf deleted file mode 100644 index 24ecdd5..0000000 --- a/invidious/http3-proxy/nginx-unix.conf +++ /dev/null @@ -1,21 +0,0 @@ -user www-data; -events { - worker_connections 1024; -} -http { - server { - listen unix:/tmp/socket.sock; - access_log off; - error_log /var/log/nginx/error.log; - location / { - resolver 127.0.0.11; - set $backend "http3-proxy"; - proxy_buffering off; - proxy_pass http://$backend:8080; - proxy_http_version 1.1; # to keep alive - proxy_set_header Connection ""; # to keep alive - } - } -} - - diff --git a/invidious/http3-proxy/nginx.conf b/invidious/http3-proxy/nginx.conf deleted file mode 100644 index 0a255d4..0000000 --- a/invidious/http3-proxy/nginx.conf +++ /dev/null @@ -1,22 +0,0 @@ -user www-data; -events { - worker_connections 1024; -} -http { - server { - listen 3000; - listen [::]:3000; - access_log /var/log/nginx/access.log; - error_log /var/log/nginx/error.log; - location / { - resolver 127.0.0.11; - set $backend "http3-proxy"; - proxy_buffering off; - proxy_pass http://$backend:8080; - proxy_http_version 1.1; # to keep alive - proxy_set_header Connection ""; # to keep alive - } - } -} - - diff --git a/invidious/inv_sig_helper/docker-compose.yml b/invidious/inv_sig_helper/docker-compose.yml deleted file mode 100644 index 4ddf35e..0000000 --- a/invidious/inv_sig_helper/docker-compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -services: - inv_sig_helper: - image: quay.io/invidious/inv-sig-helper - restart: unless-stopped - init: true - command: ["--tcp", "0.0.0.0:12999"] - environment: - - RUST_LOG=info - deploy: - replicas: 10 - -networks: - default: - name: invidious - external: true - -volumes: - inv_sig_helper_socket: diff --git a/invidious/inv_sig_helper/nginx.conf b/invidious/inv_sig_helper/nginx.conf deleted file mode 100644 index 4c81c07..0000000 --- a/invidious/inv_sig_helper/nginx.conf +++ /dev/null @@ -1,15 +0,0 @@ -events { - worker_connections 1024; -} -stream { - upstream sig { - server inv_sig_helper:12999; - } - server { - listen 3001; - listen [::]:3001; - #access_log off; - resolver 127.0.0.11; - proxy_pass sig; - } -}