feat(ui): show info callout only when domain is set without exposed ports

This commit is contained in:
ShadowArcanist
2026-03-26 13:26:50 +05:30
parent 9c8e5645b4
commit 8c4865215b
@@ -492,7 +492,7 @@
</div>
@endif
@endif
@if (empty($portsExposes) || $portsExposes === '0')
@if ((empty($portsExposes) || $portsExposes === '0') && !empty($fqdn))
<x-callout type="info" title="No ports exposed" class="mb-4">
This application does not expose any ports and will not be reachable through the proxy or your domains.
This behavior is normal for background workers, bots, or scheduled tasks.