Files
hysteria2/roles/hysteria2/templates/config.yaml.j2
T
Sergey Antropoff 0aec9e6e54 Add Salamander obfs branch: replace masquerade with packet obfuscation.
- 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
2026-07-01 02:17:22 +03:00

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 }}"