{% extends "base.html" %} {% block content %}
To change any of these settings, edit {{ config.filename }}.

Database Settings

Host
{{ config.database.address }}
Database
{{ config.database.database }}
User
{{ config.database.user }}
Password
••••••

Backend Settings

Host
{{ config.server.address }}
Port
{{ config.server.port }}
HTTPS
{{ 'active' if config.server.https else 'inactive' }}
Keepalive Address
{{ config.server.keepalive }}
HTTP Get Redirect Address
{{ config.server.redirect or 'disabled' }}

Cache Settings

Cache Directory
{{ config.cache_dir }}

Frontend Settings

Web Address
{{ config.server.uri or 'http://eagate.573.jp' }}
Network Name
{{ config.name }}

Data Exchange API Settings

Administrative Email
{{ config.email }}

Server Settings

PCBID Enforcement
{{ 'active' if config.server.enforce_pcbid else 'inactive' }}
Self-Generated PCBID Limit
{{ 'disabled' if (config.server.pcbid_self_grant_limit <= 0 or not config.server.enforce_pcbid) else config.server.pcbid_self_grant_limit }}
PASELI Enabled
{{ 'yes' if config.paseli.enabled else 'no' }} (can be overridden by arcade settings)
Infinite PASELI Enabled
{{ 'yes' if config.paseli.infinite else 'no' }} (can be overridden by arcade settings)
Event Log Preservation Duration
{{ (config.event_log_duration|string + ' seconds') if config.event_log_duration else 'infinite' }}
{% endblock %}