5 lines
175 B
Plaintext
5 lines
175 B
Plaintext
{% set crypt = import('crypt') %}
|
|
{% if USE_AUTH_BASIC == "yes" %}
|
|
{{ AUTH_BASIC_USER }}:{{ crypt.crypt(AUTH_BASIC_PASSWORD, crypt.mksalt(crypt.METHOD_SHA512)) }}
|
|
{% endif %}
|