0aec9e6e54
- ACME TLS challenge on 443 (no port 80 or nginx decoy) - Auto-generate and persist obfs password per server - Update client export, HTML catalog, and vault examples - Document Salamander vs main and ACME auto-renewal in README
20 lines
360 B
Django/Jinja
20 lines
360 B
Django/Jinja
listen: 0.0.0.0:{{ hysteria2_listen_port }}
|
|
|
|
acme:
|
|
type: tls
|
|
domains:
|
|
- {{ hysteria2_domain }}
|
|
email: {{ hysteria2_acme_email }}
|
|
|
|
auth:
|
|
type: userpass
|
|
userpass:
|
|
{% for user in hysteria2_resolved_users %}
|
|
{{ user.name }}: "{{ user.password }}"
|
|
{% endfor %}
|
|
|
|
obfs:
|
|
type: salamander
|
|
salamander:
|
|
password: "{{ hysteria2_obfs_password }}"
|