Remove unused folders

This commit is contained in:
root 2024-09-18 04:47:41 -03:00
parent 468f9d688b
commit 6b544b01ac
5 changed files with 0 additions and 132 deletions

View file

@ -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"

View file

@ -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
}
}
}

View file

@ -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
}
}
}

View file

@ -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:

View file

@ -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;
}
}