{% extends "base.html" %} {% block title %}系统设置 - ProxyAuto Pro{% endblock %} {% block content %}

AWS 凭证

{% if config.aws_access_key %}
当前: {{ mask_secret(config.aws_access_key) }}
{% endif %} 留空则保持原值不变
{% if config.aws_secret_key %}
当前: {{ mask_secret(config.aws_secret_key) }}
{% endif %} 留空则保持原值不变

Cloudflare 认证

Cloudflare 凭证用于更新 DNS 记录。每台机器的域名绑定请在节点管理中配置。

{% if config.cf_api_token %}
当前: {{ mask_secret(config.cf_api_token) }}
{% endif %} 留空则保持原值不变
{% if config.cf_email %}
当前: {{ config.cf_email }}
{% endif %}
{% if config.cf_api_key %}
当前: {{ mask_secret(config.cf_api_key) }}
{% endif %} 留空则保持原值不变

邮件通知设置

配置 SMTP 服务器用于发送流量预警邮件通知。

{% if config.smtp_password %}
当前: {{ mask_secret(config.smtp_password) }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}