Skip to content

Commit

Permalink
fix: add subpath to server address (#247)
Browse files Browse the repository at this point in the history
* fix: add subpath to server address

* bump chart version
  • Loading branch information
sonroyaalmerol authored Jul 18, 2024
1 parent a97b006 commit 7c554d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.9.0-beta6
version: 0.9.0-beta7
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
2 changes: 1 addition & 1 deletion charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data:
theme: {{ .Values.configMap.theme | default "light" | squote }}
default_2fa_method: {{ .Values.configMap.default_2fa_method | default "" | squote }}
server:
address: {{ printf "tcp://0.0.0.0:%d" ((.Values.configMap.server.port | default 9091) | int) | squote }}
address: {{ printf "tcp://0.0.0.0:%d%s" ((.Values.configMap.server.port | default 9091) | int) (include "authelia.path" .) | squote }}
asset_path: {{ .Values.configMap.server.asset_path | default "" | squote }}
headers:
csp_template: {{ .Values.configMap.server.headers.csp_template | default "" | squote }}
Expand Down

0 comments on commit 7c554d6

Please sign in to comment.