Initial: Caddy + FRP Server (WSS) + Chisel Server
This commit is contained in:
commit
00a5904999
5 changed files with 78 additions and 0 deletions
43
compose.yaml
Normal file
43
compose.yaml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
networks:
|
||||
proxy_network:
|
||||
name: test_proxy_network
|
||||
|
||||
services:
|
||||
caddy:
|
||||
image: caddy:latest
|
||||
container_name: caddy
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
- "443:443/udp"
|
||||
volumes:
|
||||
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
||||
- /app-config/caddy/data:/data
|
||||
- /app-config/caddy/logs:/var/log/caddy
|
||||
networks:
|
||||
- proxy_network
|
||||
|
||||
frps:
|
||||
image: snowdreamtech/frps:0.68.0
|
||||
container_name: frps
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "7000:7000"
|
||||
- "18097:18097"
|
||||
- "127.0.0.1:7500:7500"
|
||||
volumes:
|
||||
- ./frps.toml:/etc/frp/frps.toml:ro
|
||||
entrypoint: ["/usr/bin/frps", "-c", "/etc/frp/frps.toml"]
|
||||
networks:
|
||||
- proxy_network
|
||||
|
||||
chisel:
|
||||
image: jpillora/chisel:latest
|
||||
container_name: chisel
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8443:8443"
|
||||
command: ["server", "--port", "8443", "--auth", "pfannkuchen:test2026", "--reverse"]
|
||||
networks:
|
||||
- proxy_network
|
||||
Loading…
Add table
Add a link
Reference in a new issue