mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-08-14 23:56:53 +00:00
Use new Rust based piped-proxy.
This commit is contained in:
parent
76d40b4fea
commit
a77f887fd8
4 changed files with 21 additions and 17 deletions
|
@ -37,7 +37,7 @@ PROXY_HOSTNAME {
|
|||
Cache-Control "public, max-age=604800"
|
||||
}
|
||||
|
||||
reverse_proxy unix//var/run/ytproxy/http-proxy.sock {
|
||||
reverse_proxy unix//var/run/ytproxy/actix.sock {
|
||||
header_up -CF-Connecting-IP
|
||||
header_up -X-Forwarded-For
|
||||
header_down -etag
|
||||
|
|
|
@ -8,12 +8,14 @@ services:
|
|||
- piped
|
||||
container_name: piped-frontend
|
||||
entrypoint: ash -c 'sed -i s/pipedapi.kavin.rocks/BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g "daemon off;"'
|
||||
ytproxy:
|
||||
image: 1337kavin/ytproxy:latest
|
||||
piped-proxy:
|
||||
image: 1337kavin/piped-proxy:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- UDS=1
|
||||
volumes:
|
||||
- ytproxy:/app/socket
|
||||
container_name: ytproxy
|
||||
- piped-proxy:/app/socket
|
||||
container_name: piped-proxy
|
||||
piped:
|
||||
image: 1337kavin/piped:latest
|
||||
restart: unless-stopped
|
||||
|
@ -45,7 +47,7 @@ services:
|
|||
volumes:
|
||||
- ./config/Caddyfile:/etc/caddy/Caddyfile:ro
|
||||
- caddy_data:/data
|
||||
- ytproxy:/var/run/ytproxy
|
||||
- piped-proxy:/var/run/piped-proxy
|
||||
container_name: caddy
|
||||
postgres:
|
||||
image: postgres:13-alpine
|
||||
|
@ -67,7 +69,7 @@ services:
|
|||
- WATCHTOWER_CLEANUP=true
|
||||
- WATCHTOWER_INCLUDE_RESTARTING=true
|
||||
container_name: watchtower
|
||||
command: piped-frontend piped-backend ytproxy varnish caddy postgres watchtower
|
||||
command: piped-frontend piped-backend piped-proxy varnish caddy postgres watchtower
|
||||
volumes:
|
||||
caddy_data: null
|
||||
ytproxy: null
|
||||
piped-proxy: null
|
||||
|
|
|
@ -8,12 +8,14 @@ services:
|
|||
- piped
|
||||
container_name: piped-frontend
|
||||
entrypoint: ash -c 'sed -i s/pipedapi.kavin.rocks/BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g "daemon off;"'
|
||||
ytproxy:
|
||||
image: 1337kavin/ytproxy:latest
|
||||
piped-proxy:
|
||||
image: 1337kavin/piped-proxy:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- UDS=1
|
||||
volumes:
|
||||
- ytproxy:/app/socket
|
||||
container_name: ytproxy
|
||||
- piped-proxy:/app/socket
|
||||
container_name: piped-proxy
|
||||
piped:
|
||||
image: 1337kavin/piped:latest
|
||||
restart: unless-stopped
|
||||
|
@ -33,11 +35,11 @@ services:
|
|||
- ./config/pipedproxy.conf:/etc/nginx/conf.d/pipedproxy.conf:ro
|
||||
- ./config/pipedfrontend.conf:/etc/nginx/conf.d/pipedfrontend.conf:ro
|
||||
- ./config/ytproxy.conf:/etc/nginx/snippets/ytproxy.conf:ro
|
||||
- ytproxy:/var/run/ytproxy
|
||||
- piped-proxy:/var/run/ytproxy
|
||||
container_name: nginx
|
||||
depends_on:
|
||||
- piped
|
||||
- ytproxy
|
||||
- piped-proxy
|
||||
- pipedfrontend
|
||||
postgres:
|
||||
image: postgres:13-alpine
|
||||
|
@ -59,6 +61,6 @@ services:
|
|||
- WATCHTOWER_CLEANUP=true
|
||||
- WATCHTOWER_INCLUDE_RESTARTING=true
|
||||
container_name: watchtower
|
||||
command: piped-frontend piped-backend ytproxy varnish nginx postgres watchtower
|
||||
command: piped-frontend piped-backend piped-proxy varnish nginx postgres watchtower
|
||||
volumes:
|
||||
ytproxy: null
|
||||
piped-proxy: null
|
||||
|
|
|
@ -15,4 +15,4 @@ proxy_http_version 1.1;
|
|||
proxy_set_header Connection keep-alive;
|
||||
proxy_max_temp_file_size 32m;
|
||||
access_log off;
|
||||
proxy_pass http://unix:/var/run/ytproxy/http-proxy.sock;
|
||||
proxy_pass http://unix:/var/run/ytproxy/actix.sock;
|
||||
|
|
Loading…
Reference in a new issue