mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-17 14:08:33 +00:00
4 lines
175 B
Text
4 lines
175 B
Text
{% set crypt = import('crypt') %}
|
|
{% if USE_AUTH_BASIC == "yes" %}
|
|
{{ AUTH_BASIC_USER }}:{{ crypt.crypt(AUTH_BASIC_PASSWORD, crypt.mksalt(crypt.METHOD_SHA512)) }}
|
|
{% endif %}
|