coolify/resources/views/livewire/server/proxy/deploy.blade.php

80 lines
3.9 KiB
PHP
Raw Normal View History

2023-06-02 15:15:12 +02:00
<div>
@if ($server->isFunctional() && $server->proxyType() !== 'NONE')
2024-03-21 12:44:32 +01:00
<x-slide-over closeWithX fullScreen @startproxy.window="slideOverOpen = true">
<x-slot:title>Proxy Status</x-slot:title>
<x-slot:content>
<livewire:activity-monitor header="Logs" />
</x-slot:content>
</x-slide-over>
2023-09-25 09:17:42 +02:00
@if (data_get($server, 'proxy.status') === 'running')
2023-07-14 13:38:24 +02:00
<div class="flex gap-4">
@if ($currentRoute === 'server.proxy' && $traefikDashboardAvailable && $server->proxyType() === 'TRAEFIK_V2')
<button>
2023-10-13 14:35:02 +02:00
<a target="_blank" href="http://{{ $serverIp }}:8080">
Traefik Dashboard
<x-external-link />
</a>
</button>
@endif
2024-03-21 12:44:32 +01:00
<x-modal-confirmation @click="$wire.dispatch('restartEvent')">
<x-slot:button-title>
2024-03-25 10:41:44 +01:00
<svg class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2024-03-21 12:44:32 +01:00
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2">
<path d="M19.933 13.041a8 8 0 1 1-9.925-8.788c3.899-1 7.935 1.007 9.425 4.747" />
<path d="M20 4v5h-5" />
</g>
</svg>
Restart Proxy
</x-slot:button-title>
This proxy will be stopped and started. It is not reversible. <br>All resources will be unavailable
during the restart. <br>Please think again.
</x-modal-confirmation>
<x-modal-confirmation @click="$wire.dispatch('stopEvent')">
<x-slot:button-title>
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 text-error" viewBox="0 0 24 24"
stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round"
stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
</path>
<path d="M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z">
</path>
</svg>
Stop Proxy
</x-slot:button-title>
This proxy will be stopped. It is not reversible. <br>All resources will be unavailable.
<br>Please think again.
</x-modal-confirmation>
2023-06-02 15:15:12 +02:00
</div>
2023-07-14 13:38:24 +02:00
@else
2024-03-21 12:44:32 +01:00
<button @click="$wire.dispatch('checkProxy')" class="gap-2 button">
2024-03-25 10:41:44 +01:00
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 dark:text-warning" viewBox="0 0 24 24"
2023-08-11 20:19:42 +02:00
stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M7 4v16l13 -8z" />
</svg>
Start Proxy
2023-09-11 22:29:34 +02:00
</button>
2023-07-14 13:38:24 +02:00
@endif
2023-06-02 15:15:12 +02:00
@endif
2024-03-21 12:44:32 +01:00
@script
<script>
$wire.$on('restartEvent', () => {
$wire.$dispatch('info', 'Restarting proxy.');
2024-03-21 12:44:32 +01:00
$wire.$call('restart');
});
$wire.$on('proxyChecked', () => {
window.dispatchEvent(new CustomEvent('startproxy'))
$wire.$call('startProxy');
});
$wire.$on('stopEvent', () => {
$wire.$dispatch('info', 'Stopping proxy.');
2024-03-21 12:44:32 +01:00
$wire.$call('stop');
});
</script>
@endscript
2023-06-02 15:15:12 +02:00
</div>