Merge branch 'master' into bug/dashy-updated-port

This commit is contained in:
Sash 2024-07-20 09:53:16 +10:00 committed by GitHub
commit 205a7fc603
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
231 changed files with 707 additions and 705 deletions
.github/workflows
_template.subdomain.conf.sampleactual-server.subdomain.conf.sampleadguard.subdomain.conf.sampleadminer.subdomain.conf.sampleadminmongo.subdomain.conf.sampleairsonic.subdomain.conf.sampleapprise-api.subdomain.conf.samplearchisteamfarm.subdomain.conf.samplearia2-with-webui.subdomain.conf.sampleatuin.subdomain.conf.sampleaudiobookshelf.subdomain.conf.sampleauthelia.subdomain.conf.sampleauthentik.subdomain.conf.samplebabybuddy.subdomain.conf.samplebazarr.subdomain.conf.samplebeets.subdomain.conf.samplebitwarden.subdomain.conf.sampleboinc.subdomain.conf.samplebooksonic.subdomain.conf.samplebookstack.subdomain.conf.samplebudge.subdomain.conf.samplecadvisor.subdomain.conf.samplecalibre-web.subdomain.conf.samplecalibre.subdomain.conf.samplecastopod.subdomain.conf.samplechangedetection.subdomain.conf.samplechevereto.subdomain.conf.samplechronograf.subdomain.conf.samplecloudbeaver.subdomain.conf.samplecode-server.subdomain.conf.samplecodimd.subdomain.conf.samplecollabora.subdomain.conf.samplecommento.subdomain.conf.samplecouchpotato.subdomain.conf.samplecrowdsec-dashboard.subdomain.conf.samplecrowdsec.subdomain.conf.sampledashy.subdomain.conf.sampledeluge.subdomain.conf.sampledillinger.subdomain.conf.sampledocumentserver.subdomain.conf.sampledokuwiki.subdomain.conf.sampledomoticz.subdomain.conf.sampledozzle.subdomain.conf.sampledrone.subdomain.conf.sampledsmrreader.subdomain.conf.sampleduplicacy.subdomain.conf.sampleduplicati.subdomain.conf.sampleemby.subdomain.conf.sampleembystat.subdomain.conf.sampleemulatorjs.subdomain.conf.sampleesphome.subdomain.conf.samplefenrus.subdomain.conf.samplefilebot.subdomain.conf.samplefilebrowser.subdomain.conf.samplefirefly.subdomain.conf.samplefirefox.subdomain.conf.sampleflaresolverr.subdomain.conf.sampleflexget.subdomain.conf.sampleflood.subdomain.conf.samplefoldingathome.subdomain.conf.sampleforgejo.subdomain.conf.samplefoundryvtt.subdomain.conf.samplefreshrss.subdomain.conf.samplefrigate.subdomain.conf.samplegaps.subdomain.conf.samplegatus.subdomain.conf.sampleget_iplayer.subdomain.conf.sampleghost.subdomain.conf.samplegitea.subdomain.conf.sampleglances.subdomain.conf.samplegotify.subdomain.conf.samplegrafana.subdomain.conf.samplegrampsweb.subdomain.conf.samplegrav.subdomain.conf.samplegraylog.subdomain.conf.samplegrocy.subdomain.conf.sampleguacamole.subdomain.conf.samplehass-configurator.subdomain.conf.sampleheadphones.subdomain.conf.samplehealthchecks.subdomain.conf.samplehedgedoc.subdomain.conf.sampleheimdall.subdomain.conf.samplehomarr.subdomain.conf.samplehomeassistant.subdomain.conf.samplehomebox.subdomain.conf.samplehomebridge.subdomain.conf.samplehomepage.subdomain.conf.samplehomer.subdomain.conf.samplehuginn.subdomain.conf.sampleimmich.subdomain.conf.sampleinfluxdb.subdomain.conf.sampleit-tools.subdomain.conf.samplejackett.subdomain.conf.samplejdownloader.subdomain.conf.samplejellyfin.subdomain.conf.samplejellyseerr.subdomain.conf.samplejfa-go.subdomain.conf.samplekanzi.subdomain.conf.samplekasm.subdomain.conf.sample

@ -12,7 +12,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4.1.6
uses: actions/checkout@v4.1.7
- name: Check Allowed File Names
run: |

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template.
# REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done.
# REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings.
@ -6,8 +6,8 @@
# make sure that your dns has a cname set for <container_name>
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name <container_name>.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your actual-server container is named actual-server
# make sure that your dns has a cname set for actual-server
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name actual-server.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your adguard container is named adguard
# make sure that your dns has a cname set for adguard
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name adguard.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your adminer container is named adminer
# make sure that your dns has a cname set for adminer
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name adminer.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your adminmongo container is named adminmongo
# make sure that your dns has a cname set for adminmongo
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name adminmongo.*;

@ -1,11 +1,11 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your airsonic container is named airsonic
# make sure that your dns has a cname set for airsonic
# add `server.use-forward-headers=true` to `/config/application.properties` to ensure logs contain real source IP
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name airsonic.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your apprise-api container is named apprise-api
# make sure that your dns has a cname set for apprise-api
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name apprise-api.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your archisteamfarm container is named archisteamfarm
# make sure that your dns has a cname set for archisteamfarm
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name archisteamfarm.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your aria2 container is named aria2-with-webui
# make sure that your dns has a cname set for aria2
#
@ -7,8 +7,8 @@
# https://aria2.example.com/#!/settings/rpc/set?protocol=https&host=aria2.example.com&port=443&interface=aria2-with-webui/jsonrpc
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name aria2.*;

@ -1,10 +1,10 @@
## Version 2024/03/24
## Version 2024/07/16
# make sure that your atuin container is named atuin
# make sure that your dns has a cname set for atuin
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name atuin.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your audiobookshelf container is named audiobookshelf
# make sure that your dns has a cname set for audiobookshelf
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name audiobookshelf.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your authelia container is named authelia
# make sure that your dns has a cname set for authelia
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name authelia.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your authentik container is named authentik-server
# make sure that your dns has a cname set for authentik
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name authentik.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your babybuddy container is named babybuddy
# make sure that your dns has a cname set for babybuddy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name babybuddy.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your bazarr container is named bazarr
# make sure that your dns has a cname set for bazarr
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name bazarr.*;

@ -1,11 +1,11 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your beets container is named beets
# make sure that your dns has a cname set for beets
#First edit beets.yml and enable the reverse proxy settings, under "web" add "reverse_proxy: true" and restart the beets container.
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name beets.*;

@ -1,4 +1,4 @@
## Version 2023/11/12
## Version 2024/07/16
# make sure that your bitwarden container is named bitwarden
# make sure that your dns has a cname set for bitwarden
# if you are using bitwarden (the official image), use the bitwarden conf
@ -7,8 +7,8 @@
# bitwarden defaults to port 8080 and can be changed using the environment variable BW_PORT_HTTP on the bitwarden container
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name bitwarden.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your boinc container is named boinc
# make sure that your dns has a cname set for boinc
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name boinc.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your booksonic container is named booksonic
# make sure that your dns has a cname set for booksonic
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name booksonic.*;

@ -1,12 +1,12 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your bookstack container is named bookstack
# make sure that your dns has a cname set for bookstack
# Ensure you have the APP_URL Environment Variable set correctly in your Docker Run/Compose or in BookStack Env File (/www/.env)
# https://github.com/linuxserver/docker-bookstack#docker
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name bookstack.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your budge container is named budge
# make sure that your dns has a cname set for budge
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name budge.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your cadvisor container is named cadvisor
# make sure that your dns has a cname set for cadvisor
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name cadvisor.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your calibre-web container is named calibre-web
# make sure that your dns has a cname set for calibre-web
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name calibre-web.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your calibre container is named calibre
# make sure that your dns has a cname set for calibre
# for the content server, go into calibre preferences / sharing over the net / advanced and
@ -6,8 +6,8 @@
# the content server will be accessible at 'https://calibre.domain.com/content-server/'
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name calibre.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your castopod container is named castopod
# make sure that your dns has a cname set for castopod
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name castopod.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your changedetection container is named changedetection
# make sure that your dns has a cname set for changedetection
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name changedetection.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your chevereto container is named chevereto
# make sure that your dns has a cname set for chevereto
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name chevereto.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your chronograf container is named chronograf
# make sure that your dns has a cname set for chronograf
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name chronograf.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your cloudbeaver container is named cloudbeaver
# make sure that your dns has a cname set for cloudbeaver
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name cloudbeaver.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your code-server container is named code-server
# make sure that your dns has a cname set for code-server
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name code-server.* "~^[0-9]{1,10}\.code-server\..*$";

@ -1,11 +1,11 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure you have added the following environmental variables to your run command/compose file
# CMD_DOMAIN=codimd.server.com
# CMD_PROTOCOL_USESSL=true
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name codimd.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your collabora container is named collabora
# make sure that your dns has a cname set for collabora
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name collabora.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your commento container is named commento
# make sure that your dns has a cname set for commento
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name commento.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your couchpotato container is named couchpotato
# make sure that your dns has a cname set for couchpotato
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name couchpotato.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your crowdsec-dashboard container is named crowdsec-dashboard
# make sure that your dns has a cname set for crowdsec-dashboard
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name crowdsec-dashboard.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your crowdsec container is named crowdsec
# make sure that your dns has a cname set for crowdsec
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name crowdsec.*;

@ -1,10 +1,10 @@
## Version 2023/08/11
## Version 2024/07/16
# make sure that your dashy container is named dashy
# make sure that your dns has a cname set for dashy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name dashy.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your deluge container is named deluge
# make sure that your dns has a cname set for deluge
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name deluge.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your dillinger container is named dillinger
# make sure that your dns has a cname set for dillinger
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name dillinger.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your onlyoffice documentserver container is named documentserver
# make sure that your dns has a cname set for documentserver
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name documentserver.*;

@ -1,11 +1,11 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your dokuwiki container is named dokuwiki
# make sure that your dns has a cname set for dokuwiki
# complete the setup by appending install.php to URL
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name dokuwiki.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your domoticz container is named domoticz
# make sure that your dns has a cname set for domoticz
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name domoticz.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your dozzle container is named dozzle
# make sure that your dns has a cname set for dozzle
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name dozzle.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your drone container is named drone
# make sure that your dns has a cname set for drone
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name drone.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your dsmr container is named dsmr
# make sure that your dns has a cname set for dsmr
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name dsmr.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your duplicacy container is named duplicacy
# make sure that your dns has a cname set for duplicacy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name duplicacy.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your duplicati container is named duplicati
# make sure that your dns has a cname set for duplicati
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name duplicati.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your emby container is named emby
# make sure that your dns has a cname set for emby
# if emby is running in bridge mode and the container is named "emby", the below config should work as is
@ -8,8 +8,8 @@
# and set the "Secure connection mode" to "Handled by reverse proxy"
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name emby.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your embystat container is named embystat
# make sure that your dns has a cname set for embystat
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name embystat.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your emulatorjs container is named emulatorjs
# make sure that your dns has a cname set for emulatorjs
# In emulatorjs docker arguments, set an env variable for SUBFOLDER=/backend/
@ -6,8 +6,8 @@
# Don't forget to enable auth at least for the /backend/ location
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name emulatorjs.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your esphome container is named esphome
# make sure that your dns has a cname set for esphome
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name esphome.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your fenrus container is named fenrus
# make sure that your dns has a cname set for fenrus
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name fenrus.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your filebot container is named filebot
# make sure that your dns has a cname set for filebot
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name filebot.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your filebrowser container is named filebrowser
# make sure that your dns has a cname set for filebrowser
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name filebrowser.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your firefly container is named firefly
# make sure that your dns has a cname set for firefly
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name firefly.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your firefox container is named firefox
# make sure that your dns has a cname set for firefox
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name firefox.*;

@ -1,10 +1,10 @@
## Version 2024/01/19
## Version 2024/07/16
# make sure that your flaresolverr container is named flaresolverr
# make sure that your dns has a cname set for flaresolverr
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name flaresolverr.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your flexget container is named flexget
# make sure that your dns has a cname set for flexget
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name flexget.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your flood container is named flood
# make sure that your dns has a cname set for flood
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name flood.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your foldingathome container is named foldingathome
# make sure that your dns has a cname set for foldingathome
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name foldingathome.*;

@ -1,4 +1,4 @@
## Version 2024/04/20
## Version 2024/07/16
# make sure that your forgejo container is named forgejo
# make sure that your dns has a cname set for forgejo
# edit the following parameters in /data/forgejo/conf/app.ini or set as ENV vars in your container
@ -8,8 +8,8 @@
# DOMAIN = forgejo.example.com
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name forgejo.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your foundryvtt container is named foundryvtt
# make sure that your dns has a cname set for foundryvtt
# Ensure that your Foundry VTT's {userData}/Config/options.json file is configured as follows:
@ -12,8 +12,8 @@
# Refer to https://foundryvtt.com/article/nginx/ for the latest Foundry configuration information
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name foundryvtt.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your freshrss container is named freshrss
# make sure that your dns has a cname set for freshrss
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name freshrss.*;

@ -1,10 +1,10 @@
## Version 2023/06/21
## Version 2024/07/16
# make sure that your frigate container is named frigate
# make sure that your dns has a cname set for frigate
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name frigate.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your gaps container is named gaps
# make sure that your dns has a cname set for gaps
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name gaps.*;

@ -1,10 +1,10 @@
## Version 2024/02/27
## Version 2024/07/16
# make sure that your gatus container is named gatus
# make sure that your dns has a cname set for gatus
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name gatus.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your get_iplayer container is named get_iplayer
# make sure that your dns has a cname set for get_iplayer
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name get_iplayer.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your ghost container is named ghost
# make sure that your dns has a cname set for ghost
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name ghost.*;

@ -1,4 +1,4 @@
## Version 2023/12/26
## Version 2024/07/16
# make sure that your gitea container is named gitea
# make sure that your dns has a cname set for gitea
# edit the following parameters in /data/gitea/conf/app.ini
@ -8,8 +8,8 @@
# DOMAIN = gitea.server.com
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name gitea.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your glances container is named glances
# make sure that your dns has a cname set for glances
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name glances.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your gotify container is named gotify
# make sure that your dns has a cname set for gotify
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name gotify.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your grafana container is named grafana
# make sure that your dns has a cname set for grafana
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name grafana.*;

@ -1,10 +1,10 @@
## Version 2023/10/15
## Version 2024/07/16
# make sure that your grampsweb container is named grampsweb
# make sure that your dns has a cname set for grampsweb
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name grampsweb.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your grav container is named grav
# make sure that your dns has a cname set for grav
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name grav.*;

@ -1,12 +1,12 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your graylog container is named graylog
# make sure that your dns has a cname set for graylog
# Ensure the upstream_port matches your GRAYLOG_HTTP_BIND_ADDRESS port
# This conf assumes GRAYLOG_HTTP_BIND_ADDRESS=0.0.0.0:9000
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name graylog.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your grocy container is named grocy
# make sure that your dns has a cname set for grocy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name grocy.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your guacamole container is named guacamole
# make sure that your dns has a cname set for guacamole
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name guacamole.*;

@ -1,12 +1,12 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your hass container is named hass
# make sure that your dns has a cname set for hass
# this proxy configuration file is for the hass-configurator-docker container that is used
# in the hassos addon store (https://github.com/CausticLab/hass-configurator-docker)
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name hass-configurator.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your headphones container is named headphones
# make sure that your dns has a cname set for headphones
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name headphones.*;

@ -1,11 +1,11 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your healthchecks container is named healthchecks
# make sure that your dns has a cname set for healthchecks
# make sure your Healthchecks ALLOWED_HOSTS and SITE_ROOT align with the server_name used in this conf.
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name healthchecks.*;

@ -1,12 +1,12 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure you set the following environment variables in your docker arguments
# CMD_DOMAIN=hedgedoc.server.com
# CMD_URL_ADDPORT=false
# CMD_PROTOCOL_USESSL=true
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name hedgedoc.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your heimdall container is named heimdall
# make sure that your dns has a cname set for heimdall
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name heimdall.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your homarr container is named homarr
# make sure that your dns has a cname set for homarr
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homarr.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your homeassistant container is named homeassistant
# make sure that your dns has a cname set for homeassistant
@ -12,8 +12,8 @@
# - 172.16.0.0/12
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homeassistant.*;

@ -1,10 +1,10 @@
## Version 2023/10/21
## Version 2024/07/16
# make sure that your homebox container is named homebox
# make sure that your dns has a cname set for homebox
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homebox.*;
@ -51,6 +51,6 @@ server {
set $upstream_port 7745;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your homebridge container is named homebridge
# make sure that your dns has a cname set for homebridge
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homebridge.*;

@ -1,10 +1,10 @@
## Version 2024/04/09
## Version 2024/07/16
# make sure that your homepage container is named homepage
# make sure that your dns has a cname set for homepage
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homepage.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your homer container is named homer
# make sure that your dns has a cname set for homer
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name homer.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your huginn container is named huginn
# make sure that your dns has a cname set for huginn
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name huginn.*;

@ -1,11 +1,11 @@
## Version 2024/03/28
## Version 2024/07/16
# make sure that your immich container is named immich
# make sure that your dns has a cname set for immich
# immich v1.88+ only
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name immich.*;

@ -1,10 +1,10 @@
## Version 2024/01/08
## Version 2024/07/16
# make sure that your influxdb container is named influxdb
# make sure that your dns has a cname set for influxdb
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name influxdb.*;
@ -51,6 +51,6 @@ server {
set $upstream_port 8086;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your it-tools container is named it-tools
# make sure that your dns has a cname set for it-tools
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name it-tools.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your jackett container is named jackett
# make sure that your dns has a cname set for jackett
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name jackett.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your jdownloader container is named jdownloader
# make sure that your dns has a cname set for jdownloader
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name jdownloader.*;

@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your jellyfin container is named jellyfin
# make sure that your dns has a cname set for jellyfin
# if jellyfin is running in bridge mode and the container is named "jellyfin", the below config should work as is
@ -7,8 +7,8 @@
# in jellyfin settings, under "Advanced/Networking" add subdomain.mydomain.tld as a known proxy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name jellyfin.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your jellyseerr container is named jellyseerr
# make sure that your dns has a cname set for jellyseerr
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name jellyseerr.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your jfa-go container is named jfa-go
# make sure that your dns has a cname set for jfa-go
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name jfa-go.*;

@ -1,10 +1,10 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your kanzi container is named kanzi
# make sure that your dns has a cname set for kanzi
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name kanzi.*;

@ -1,13 +1,14 @@
## Version 2023/05/31
## Version 2024/07/16
# make sure that your kasm container is named kasm
# make sure that your dns has a cname set for kasm and kasm-wizard
# This configuration assumes 8443 with the environment variable -e KASM_PORT=8443 set adjust to your needs
# Post installation you will need to access Kasm > Admin > Zones > default zone (edit) and modify
# Proxy Port to 0 as documented https://www.kasmweb.com/docs/latest/how_to/reverse_proxy.html#update-zones
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name kasm.*;
@ -51,9 +52,10 @@ server {
# Wizard UI - Please enable some form of auth if publishing to the internet
# Or simply remove this and access it locally
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name kasm-wizard.*;

Some files were not shown because too many files have changed in this diff Show More