89 lines
3.0 KiB
Django/Jinja
89 lines
3.0 KiB
Django/Jinja
APP_NAME = {{ gitea_app_name }}
|
|
RUN_USER = {{ gitea_user }}
|
|
RUN_MODE = {{ gitea_run_mode }}
|
|
|
|
[security]
|
|
INTERNAL_TOKEN = {{ gitea_sec_internal_token }}
|
|
INSTALL_LOCK = true
|
|
SECRET_KEY = {{ gitea_sec_secret_key }}
|
|
|
|
[server]
|
|
LOCAL_ROOT_URL = {{ gitea_srv_local_root_url }}
|
|
SSH_DOMAIN = {{ gitea_srv_ssh_domain }}
|
|
DOMAIN = {{ gitea_srv_domain }}
|
|
HTTP_PORT = {{ gitea_http_port }}
|
|
ROOT_URL = {{ gitea_srv_root_url }}
|
|
DISABLE_SSH = {{ gitea_srv_disable_ssh }}
|
|
SSH_PORT = {{ gitea_srv_ssh_port }}
|
|
LFS_START_SERVER = {{ gitea_srv_lfs_start_server }}
|
|
OFFLINE_MODE = {{ gitea_srv_offline_mode }}
|
|
ENABLE_GZIP = {{ gitea_srv_enable_gzip }}
|
|
|
|
[database]
|
|
DB_TYPE = {{ gitea_db_type }}
|
|
HOST = {{ gitea_db_host }}
|
|
NAME = {{ gitea_db_name }}
|
|
USER = {{ gitea_db_user }}
|
|
PASSWD = {{ gitea_db_passwd }}
|
|
SSL_MODE = {{ gitea_db_ssl_mode }}
|
|
PATH = {{ gitea_db_path }}
|
|
|
|
[repository]
|
|
ROOT = {{ gitea_rep_root }}
|
|
FORCE_PRIVATE = {{ gitea_rep_force_private }}
|
|
DISABLE_HTTP_GIT = {{ gitea_rep_disable_http_git }}
|
|
|
|
[cache]
|
|
ADAPTER = {{ gitea_cache_adapter }}
|
|
INTERVAL = {{ gitea_cache_interval }}
|
|
|
|
[mailer]
|
|
ENABLED = {{ gitea_mailer_enabled }}
|
|
HELO_HOSTNAME = {{ gitea_mailer_helo_hostname }}
|
|
SKIP_VERIFY = {{ gitea_mailer_skip_verify }}
|
|
HOST = {{ gitea_mailer_host }}
|
|
FROM = {{ gitea_mailer_from }}
|
|
USER = {{ gitea_mailer_user }}
|
|
PASSWD = {{ gitea_mailer_passwd }}
|
|
|
|
[service]
|
|
REGISTER_EMAIL_CONFIRM = {{ gitea_service_register_email_confirm }}
|
|
ENABLE_NOTIFY_MAIL = {{ gitea_service_enable_notify_mail }}
|
|
DISABLE_REGISTRATION = {{ gitea_service_disable_registration }}
|
|
ENABLE_CAPTCHA = {{ gitea_service_enable_captcha }}
|
|
REQUIRE_SIGNIN_VIEW = {{ gitea_service_require_signin_view }}
|
|
DEFAULT_KEEP_EMAIL_PRIVATE = {{ gitea_service_default_keep_email_private }}
|
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = {{ gitea_service_default_allow_create_organization }}
|
|
DEFAULT_ENABLE_TIMETRACKING = {{ gitea_service_default_enable_timetracking }}
|
|
NO_REPLY_ADDRESS = {{ gitea_service_no_reply_address }}
|
|
|
|
[picture]
|
|
DISABLE_GRAVATAR = {{ gitea_picture_disable_gravatar }}
|
|
ENABLE_FEDERATED_AVATAR = {{ gitea_picture_enable_federated_avatar }}
|
|
|
|
[openid]
|
|
ENABLE_OPENID_SIGNIN = {{ gitea_openid_enable_openid_signin }}
|
|
ENABLE_OPENID_SIGNUP = {{ gitea_openid_enable_openid_signup }}
|
|
|
|
[session]
|
|
PROVIDER = {{ gitea_session_provider }}
|
|
GC_INTERVAL_TIME = {{ gitea_session_gc_interval_time }}
|
|
|
|
[log]
|
|
MODE = {{ gitea_log_mode }}
|
|
LEVEL = {{ gitea_log_level }}
|
|
ROOT_PATH = {{ gitea_log_root_path }}
|
|
|
|
[i18n]
|
|
LANGS = {{ gitea_i18n_langs }}
|
|
NAMES = {{ gitea_names }}
|
|
|
|
[git]
|
|
MAX_GIT_DIFF_LINES = {{ gitea_git_max_git_diff_lines }}
|
|
|
|
[other]
|
|
SHOW_FOOTER_BRANDING = {{ gitea_other_show_footer_branding }}
|
|
SHOW_FOOTER_VERSION = {{ gitea_other_show_footer_version }}
|
|
SHOW_FOOTER_TEMPLATE_LOAD_TIME = {{ gitea_other_show_footer_template_load_time }}
|
|
|