{{ LMS_HOST }}{% if not ENABLE_HTTPS %}:80{% endif %} {
    reverse_proxy nginx:80 {
        header_up X-Forwarded-Port {{ 443 if ENABLE_HTTPS else 80 }}
    }
}
{{ PREVIEW_LMS_HOST }}{% if not ENABLE_HTTPS %}:80{% endif %} {
    reverse_proxy nginx:80
}
{{ CMS_HOST }}{% if not ENABLE_HTTPS %}:80{% endif %} {
    reverse_proxy nginx:80
}

{{ patch("caddyfile") }}
