2025-09-23 01:02:51 +00:00
|
|
|
<div>
|
|
|
|
|
<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
|
|
|
{{ data_get_str($server, 'name')->limit(10) }} > Terminal Access | MapleDeploy
|
2025-09-23 01:02:51 +00:00
|
|
|
</x-slot>
|
|
|
|
|
<livewire:server.navbar :server="$server" />
|
|
|
|
|
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex flex-col h-full gap-8 sm:flex-row">
|
|
|
|
|
<x-server.sidebar-security :server="$server" :parameters="$parameters" />
|
|
|
|
|
<div class="w-full">
|
2025-09-23 03:56:17 +00:00
|
|
|
<div>
|
2025-09-23 01:02:51 +00:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
|
<h2>Terminal Access</h2>
|
2025-09-23 03:56:17 +00:00
|
|
|
<x-helper
|
|
|
|
|
helper="Decide if users (including admins and the owner) can access the terminal for this server and its containers from the dashboard.<br/>
|
|
|
|
|
Only team administrators and owners can change this setting."/>
|
2025-09-23 01:02:51 +00:00
|
|
|
@if (auth()->user()->isAdmin())
|
2025-09-23 03:56:17 +00:00
|
|
|
<div wire:key="terminal-access-change-{{ $isTerminalEnabled }}">
|
2025-09-23 01:02:51 +00:00
|
|
|
<x-modal-confirmation title="Confirm Terminal Access Change?"
|
|
|
|
|
temporaryDisableTwoStepConfirmation
|
|
|
|
|
buttonTitle="{{ $isTerminalEnabled ? 'Disable Terminal' : 'Enable Terminal' }}"
|
|
|
|
|
submitAction="toggleTerminal" :actions="[
|
|
|
|
|
$isTerminalEnabled
|
|
|
|
|
? 'This will disable terminal access for this server and all its containers.'
|
|
|
|
|
: 'This will enable terminal access for this server and all its containers.',
|
|
|
|
|
$isTerminalEnabled
|
|
|
|
|
? 'Users will no longer be able to access terminal views from the UI.'
|
|
|
|
|
: 'Users will be able to access terminal views from the UI.',
|
|
|
|
|
'This change will take effect immediately.',
|
|
|
|
|
]" confirmationText="{{ $server->name }}"
|
|
|
|
|
shortConfirmationLabel="Server Name"
|
2025-09-23 03:56:17 +00:00
|
|
|
step3ButtonText="{{ $isTerminalEnabled ? 'Disable Terminal' : 'Enable Terminal' }}"
|
|
|
|
|
isHighlightedButton>
|
2025-09-23 01:02:51 +00:00
|
|
|
</x-modal-confirmation>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
2025-09-23 03:56:17 +00:00
|
|
|
<div class="mb-4">Manage terminal access to this server and its containers.</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
|
<h3>Terminal Status:</h3>
|
|
|
|
|
@if ($isTerminalEnabled)
|
|
|
|
|
<span
|
|
|
|
|
class="px-2 py-1 text-xs font-semibold text-green-800 bg-green-100 rounded dark:text-green-100 dark:bg-green-800">
|
|
|
|
|
Operational
|
|
|
|
|
</span>
|
|
|
|
|
@else
|
|
|
|
|
<span
|
|
|
|
|
class="px-2 py-1 text-xs font-semibold text-red-800 bg-red-100 rounded dark:text-red-100 dark:bg-red-800">
|
|
|
|
|
Disabled
|
|
|
|
|
</span>
|
|
|
|
|
@endif
|
2025-09-23 01:02:51 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|