Fix passwordstrings
This commit is contained in:
parent
c1c841fda8
commit
256503ce00
@ -7,7 +7,7 @@ DB_TYPE = {{ gitea_dbtype_mapping[gitea_db.type] | default('mysql') }}
|
|||||||
HOST = {{ gitea_db.host | default('localhost') }}:{{ gitea_db.port | default(5432) }}
|
HOST = {{ gitea_db.host | default('localhost') }}:{{ gitea_db.port | default(5432) }}
|
||||||
NAME = {{ gitea_db.name }}
|
NAME = {{ gitea_db.name }}
|
||||||
USER = {{ gitea_db.user }}
|
USER = {{ gitea_db.user }}
|
||||||
PASSWD = `{{ gitea_db.pass }}`
|
PASSWD = """{{ gitea_db.pass }}"""
|
||||||
SCHEMA =
|
SCHEMA =
|
||||||
SSL_MODE = disable
|
SSL_MODE = disable
|
||||||
CHARSET = utf8mb4
|
CHARSET = utf8mb4
|
||||||
@ -26,7 +26,7 @@ DISABLE_SSH = {{ gitea_ssh | default('false') }}
|
|||||||
SSH_PORT = {{ gitea_ssh_show_port | default(22) }}
|
SSH_PORT = {{ gitea_ssh_show_port | default(22) }}
|
||||||
SSH_LISTEN_PORT = {{ ssh_port | default(22) }}
|
SSH_LISTEN_PORT = {{ ssh_port | default(22) }}
|
||||||
LFS_START_SERVER = {{ gitea_lfs | default('true') }}
|
LFS_START_SERVER = {{ gitea_lfs | default('true') }}
|
||||||
LFS_JWT_SECRET = `{{ gitea_jwt_secret }}`
|
LFS_JWT_SECRET = """{{ gitea_jwt_secret }}"""
|
||||||
OFFLINE_MODE = {{ gitea_is_offline | default('false') }}
|
OFFLINE_MODE = {{ gitea_is_offline | default('false') }}
|
||||||
LANDING_PAGE = {{ gitea_landing_page | default('explore') }}
|
LANDING_PAGE = {{ gitea_landing_page | default('explore') }}
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ PROTOCOL = {{ gitea_mail_type }}
|
|||||||
SMTP_ADDR = {{ gitea_mail_domain }}
|
SMTP_ADDR = {{ gitea_mail_domain }}
|
||||||
SMTP_PORT = {{ gitea_mail_port }}
|
SMTP_PORT = {{ gitea_mail_port }}
|
||||||
USER = {{ gitea_mail_user }}
|
USER = {{ gitea_mail_user }}
|
||||||
PASSWD = `{{ gitea_mail_pass }}`
|
PASSWD = """{{ gitea_mail_pass }}"""
|
||||||
|
|
||||||
[service]
|
[service]
|
||||||
REGISTER_EMAIL_CONFIRM = true
|
REGISTER_EMAIL_CONFIRM = true
|
||||||
@ -78,8 +78,8 @@ logger.router.MODE = file
|
|||||||
|
|
||||||
[security]
|
[security]
|
||||||
INSTALL_LOCK = true
|
INSTALL_LOCK = true
|
||||||
INTERNAL_TOKEN = `{{ gitea_internal_token }}`
|
INTERNAL_TOKEN = """{{ gitea_internal_token }}"""
|
||||||
SECRET_KEY = `{{ gitea_secret_key }}`
|
SECRET_KEY = """{{ gitea_secret_key }}"""
|
||||||
PASSWORD_HASH_ALGO = pbkdf2
|
PASSWORD_HASH_ALGO = pbkdf2
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user