We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 368bb1d commit 121b225Copy full SHA for 121b225
tools/env-generator/src/templates/.env.liquid
@@ -1,5 +1,6 @@
1
[public]
2
-{% if context['ENABLE_SSL'] == 'true' %}
+{% assign enable_ssl = context['ENABLE_SSL'] | downcase %}
3
+{% if enable_ssl == 'true' %}
4
NEXT_PUBLIC_WEBUI_HOST=https://{{ context["HOSTNAME"] }}
5
{% else %}
6
NEXT_PUBLIC_WEBUI_HOST=http://{{ context["HOSTNAME"] }}
0 commit comments