feat: Proxmos and PBS https redirects

This commit is contained in:
Lino Silva
2026-04-01 23:55:13 +01:00
parent a704133a0b
commit dee09aeb2c
2 changed files with 11 additions and 2 deletions
+3 -1
View File
@@ -87,7 +87,7 @@ auto_configure_traefik:
auth_required: true auth_required: true
vaultwarden: vaultwarden:
subdomain: "vaultwarden" subdomain: "pwds"
host: "10.0.2.27" host: "10.0.2.27"
port: 8004 port: 8004
auth_required: false auth_required: false
@@ -165,6 +165,7 @@ auto_configure_traefik:
subdomain: "pbs" subdomain: "pbs"
host: "10.0.2.104" host: "10.0.2.104"
port: 8007 port: 8007
https: true
auth_required: true auth_required: true
# pinchflat: # pinchflat:
# subdomain: "youtube" # subdomain: "youtube"
@@ -175,6 +176,7 @@ auto_configure_traefik:
subdomain: "proxmox" subdomain: "proxmox"
host: "10.0.2.2" host: "10.0.2.2"
port: 8006 port: 8006
https: true
auth_required: true auth_required: true
resume: resume:
subdomain: "resume" subdomain: "resume"
@@ -19,6 +19,10 @@ http:
scheme: https scheme: https
permanent: true permanent: true
serversTransports:
ignore-tls:
insecureSkipVerify: true
routers: routers:
# Static services - HTTPS # Static services - HTTPS
traefik-secure: traefik-secure:
@@ -179,6 +183,9 @@ http:
{{ service_name }}: {{ service_name }}:
loadBalancer: loadBalancer:
passHostHeader: true passHostHeader: true
{% if config.https | default(false) %}
serversTransport: ignore-tls@file
{% endif %}
servers: servers:
- url: "http://{{ config.host }}:{{ config.port }}" - url: "{{ 'https' if config.https | default(false) else 'http' }}://{{ config.host }}:{{ config.port }}"
{% endfor %} {% endfor %}