All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
55 lines
902 B
Caddyfile
55 lines
902 B
Caddyfile
# Global options
|
|
{
|
|
admin off
|
|
auto_https off
|
|
}
|
|
|
|
# Jellyfin - Media Server
|
|
jellyfin.localhost {
|
|
reverse_proxy localhost:2000
|
|
}
|
|
|
|
# qBittorrent - Torrent Client
|
|
qbittorrent.localhost {
|
|
reverse_proxy localhost:2001
|
|
}
|
|
|
|
# SABnzbd - Usenet Client
|
|
sabnzbd.localhost {
|
|
reverse_proxy localhost:2002
|
|
}
|
|
|
|
# Sonarr - TV Show Management
|
|
sonarr.localhost {
|
|
reverse_proxy localhost:2003
|
|
}
|
|
|
|
# Radarr - Movie Management
|
|
radarr.localhost {
|
|
reverse_proxy localhost:2004
|
|
}
|
|
|
|
# Lidarr - Music Management
|
|
lidarr.localhost {
|
|
reverse_proxy localhost:2006
|
|
}
|
|
|
|
# Readarr - Book Management
|
|
readarr.localhost {
|
|
reverse_proxy localhost:2007
|
|
}
|
|
|
|
# Bazarr - Subtitle Management
|
|
bazarr.localhost {
|
|
reverse_proxy localhost:2008
|
|
}
|
|
|
|
# Prowlarr - Indexer Management
|
|
prowlarr.localhost {
|
|
reverse_proxy localhost:2009
|
|
}
|
|
|
|
# Gluetun Admin Interface
|
|
gluetun.localhost {
|
|
reverse_proxy localhost:8003
|
|
} |