mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-22 16:36:18 +00:00
9 lines
499 B
HTML
9 lines
499 B
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>
|
||
|
|
{% 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>.' %}
|
||
|
|
</div>
|
||
|
|
{% endif %}
|