2023-10-09 09:00:18 +00:00
|
|
|
<div>
|
2024-06-07 09:01:10 +00:00
|
|
|
<x-slot:title>
|
feat(branding): apply MapleDeploy branding to Coolify fork
Replace all Coolify branding with MapleDeploy across 111 files:
- Logo, favicon, and color palette (Canadian red scale, stone greys)
- Fonts: Overlock for headings, Inter for body (self-hosted woff2/ttf)
- All ~70 page titles updated to "| MapleDeploy"
- Auth pages, navbar, footer, email templates, settings, boarding flow
- Remove Hetzner provider, Coolify Cloud upsells, sponsorship popups
- Disable telemetry (Sentry DSN null, undead.coolify.io ping disabled)
- Point auto-update to MapleDeploy Forgejo registry image
- Redirect help/support links to mapledeploy.ca/contact
- Add AGPL source code link to Forgejo repo in navbar
- OpenAPI docs rebranded to MapleDeploy
2026-02-08 22:34:51 +00:00
|
|
|
Proxy Configuration | MapleDeploy
|
2024-06-07 09:01:10 +00:00
|
|
|
</x-slot>
|
2025-06-10 08:55:45 +00:00
|
|
|
<livewire:server.navbar :server="$server" />
|
2024-02-26 09:25:21 +00:00
|
|
|
@if ($server->isFunctional())
|
2024-10-21 12:22:07 +00:00
|
|
|
<div class="flex flex-col h-full gap-8 sm:flex-row">
|
2024-10-30 13:54:27 +00:00
|
|
|
<x-server.sidebar-proxy :server="$server" :parameters="$parameters" />
|
2024-02-26 09:25:21 +00:00
|
|
|
<div class="w-full">
|
2023-12-18 13:01:25 +00:00
|
|
|
<livewire:server.proxy :server="$server" />
|
2024-02-26 09:25:21 +00:00
|
|
|
</div>
|
2023-10-11 09:00:40 +00:00
|
|
|
</div>
|
2024-10-21 12:22:07 +00:00
|
|
|
@else
|
2024-02-26 09:25:21 +00:00
|
|
|
<div>Server is not validated. Validate first.</div>
|
|
|
|
|
@endif
|
2023-10-09 09:00:18 +00:00
|
|
|
</div>
|