mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-22 08:26:17 +00:00
12 lines
1.0 KiB
HTML
12 lines
1.0 KiB
HTML
{% load i18n %}
|
|
{% if not caddy_enabled %}
|
|
<div class="alert alert-warning alert-dismissible">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
<h5><i class="icon fas fa-exclamation-triangle"></i> {% trans 'Caddy is not enabled' %}</h5>
|
|
<p>{% trans 'The App Gateway and Gatekeeper modules require Caddy and the auth-gateway container to be running. Please start the application using <code>docker-compose-caddy.yml</code>.' %}</p>
|
|
<p>{% trans 'Depending on your custom firewall or proxy rules, the way you access wireguard_webadmin may change slightly after enabling Caddy.' %}</p>
|
|
<p>{% trans 'Switching to Caddy is simple, but it may require a bit of time and attention to review your current setup.' %}</p>
|
|
<p>{% trans 'For more information, see the discussion:' %} <a href="https://github.com/eduardogsilva/wireguard_webadmin/discussions/151" target="_blank" rel="noopener noreferrer">🚀 New Feature Release: Auth Gateway, Zero Trust & Caddy Integration</a></p>
|
|
</div>
|
|
{% endif %}
|