{% extends "base.html" %} {% block title %}WireGuard VPN 설정 - 리얼컴 NAS UI{% endblock %} {% block content %}

서버 정보

서버공개키: {{server_pub}}

클라이언트 생성

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}
등록된 클라이언트: {% if clients %} {% for c in clients %}
{{c}} 보기 다운로드 삭제 {% if conf_text and request.args.get('show') == c %}
{{conf_text}}
{% if qrcode %}
QR 다운로드 (JPG) {% endif %} {% endif %}
{% endfor %} {% else %}
등록된 클라이언트 없음
{% endif %}
{% endblock %}