
* feat(README): add InterviewPal sponsorship link and corresponding SVG icon * chore(versions): update coolify version to 4.0.0-beta.413 and nightly version to 4.0.0-beta.414 in configuration files * fix(terminal): enhance WebSocket client verification with authorized IPs in terminal server * chore(versions): update realtime version to 1.0.8 in versions.json * chore(versions): update realtime version to 1.0.8 in versions.json * chore(docker): update soketi image version to 1.0.8 in production configuration files * chore(versions): update coolify version to 4.0.0-beta.414 and nightly version to 4.0.0-beta.415 in configuration files * fix(ApplicationDeploymentJob): ensure source is an object before checking GitHub app properties * fix(ui): Disable livewire navigate feature (causing spam of setInterval()) * fix(ui): Remove required attribute from image input in service application view * fix(ui): Change application image validation to be nullable in service application view * fix(Server): Correct proxy path formatting for Traefik proxy type
55 lines
2.2 KiB
PHP
55 lines
2.2 KiB
PHP
<div class="pb-6">
|
|
<x-modal modalId="startProxy">
|
|
<x-slot:modalBody>
|
|
<livewire:activity-monitor header="Proxy Startup Logs" />
|
|
</x-slot:modalBody>
|
|
<x-slot:modalSubmit>
|
|
<x-forms.button onclick="startProxy.close()" type="submit">
|
|
Close
|
|
</x-forms.button>
|
|
</x-slot:modalSubmit>
|
|
</x-modal>
|
|
<div class="flex items-center gap-2">
|
|
<h1>Server</h1>
|
|
@if ($server->proxySet())
|
|
<livewire:server.proxy.status :server="$server" />
|
|
@endif
|
|
</div>
|
|
<div class="subtitle">{{ data_get($server, 'name') }}</div>
|
|
<div class="navbar-main">
|
|
<nav class="flex items-center gap-6 overflow-x-scroll sm:overflow-x-hidden scrollbar min-h-10 whitespace-nowrap">
|
|
<a class="{{ request()->routeIs('server.show') ? 'dark:text-white' : '' }}"
|
|
href="{{ route('server.show', [
|
|
'server_uuid' => data_get($server, 'uuid'),
|
|
]) }}">
|
|
<button>Configuration</button>
|
|
</a>
|
|
|
|
@if (!$server->isSwarmWorker() && !$server->settings->is_build_server)
|
|
<a class="{{ request()->routeIs('server.proxy') ? 'dark:text-white' : '' }}"
|
|
href="{{ route('server.proxy', [
|
|
'server_uuid' => data_get($server, 'uuid'),
|
|
]) }}">
|
|
<button>Proxy</button>
|
|
</a>
|
|
@endif
|
|
<a class="{{ request()->routeIs('server.resources') ? 'dark:text-white' : '' }}"
|
|
href="{{ route('server.resources', [
|
|
'server_uuid' => data_get($server, 'uuid'),
|
|
]) }}">
|
|
<button>Resources</button>
|
|
</a>
|
|
<a class="{{ request()->routeIs('server.command') ? 'dark:text-white' : '' }}"
|
|
href="{{ route('server.command', [
|
|
'server_uuid' => data_get($server, 'uuid'),
|
|
]) }}">
|
|
<button>Terminal</button>
|
|
</a>
|
|
</nav>
|
|
<div class="order-first sm:order-last">
|
|
<livewire:server.proxy.deploy :server="$server" />
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|