Initial commit: Lägger till hela Caddy-installationen
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
|||||||
|
services:
|
||||||
|
caddy:
|
||||||
|
image: caddy:2
|
||||||
|
container_name: caddy
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
- "443:443/udp"
|
||||||
|
volumes:
|
||||||
|
- ./conf:/etc/caddy
|
||||||
|
- caddy_data:/data
|
||||||
|
- caddy_config:/config
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
caddy_data:
|
||||||
|
caddy_config:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
(common) {
|
||||||
|
encode gzip zstd
|
||||||
|
header {
|
||||||
|
X-Frame-Options "SAMEORIGIN"
|
||||||
|
X-Content-Type-Options "nosniff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
test.gynther.se {
|
||||||
|
respond "det fungerar"
|
||||||
|
}
|
||||||
|
|
||||||
|
bazarr.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy http://bazarr:6767
|
||||||
|
}
|
||||||
|
|
||||||
|
prowlarr.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy http://prowlarr:9696
|
||||||
|
}
|
||||||
|
|
||||||
|
radarr.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy http://radarr:7878
|
||||||
|
}
|
||||||
|
|
||||||
|
sonarr.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy http://sonarr:8989
|
||||||
|
}
|
||||||
|
|
||||||
|
jellyfin.gynther.se {
|
||||||
|
reverse_proxy http://jellyfin:8096
|
||||||
|
}
|
||||||
|
qbittorrent.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy 192.168.50.4:8080
|
||||||
|
}
|
||||||
|
wetty.gynther.se {
|
||||||
|
import common
|
||||||
|
basic_auth {
|
||||||
|
admin $2a$14$DahHUWD2cKyXJ96sH5VQwuQv1bqmIn0gsdoSaw4mofzfdNY2Y0VsO
|
||||||
|
}
|
||||||
|
redir / /wetty
|
||||||
|
reverse_proxy wetty:3000
|
||||||
|
}
|
||||||
|
portainer.gynther.se {
|
||||||
|
reverse_proxy portainer:9000
|
||||||
|
}
|
||||||
|
recept.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy recipe-frontend:3000
|
||||||
|
}
|
||||||
|
|
||||||
|
api.recept.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy recipe-api:8080
|
||||||
|
}
|
||||||
|
|
||||||
|
gitea.gynther.se {
|
||||||
|
import common
|
||||||
|
reverse_proxy 192.168.50.2:3002
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user