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

53 lines
2.5 KiB
PHP
Raw Normal View History

2023-06-02 15:15:12 +02:00
<div>
2023-07-28 14:44:26 +02:00
<x-modal yesOrNo modalId="stopProxy" modalTitle="Stop Proxy" action="stop">
<x-slot:modalBody>
<p>This proxy will be stopped. It is not reversible. <br>All resources will be unavailable.
<br>Please think
again.
</p>
</x-slot:modalBody>
</x-modal>
<x-modal yesOrNo modalId="startProxy" modalTitle="Start Proxy" action="start_proxy">
<x-slot:modalBody>
2023-08-22 17:44:49 +02:00
<p>This will start the proxy on this server and
<x-highlighted text="stop any running process that is using port 80 and 443" />.
2023-07-28 14:44:26 +02:00
<br>Please think
again.
</p>
</x-slot:modalBody>
</x-modal>
2023-07-14 13:38:24 +02:00
@if (data_get($server, 'proxy.type'))
@if (data_get($server, 'proxy.status') === 'running')
<div class="flex gap-4">
2023-07-28 13:40:47 +02:00
<button>
2023-09-01 10:21:35 +02:00
<a target="_blank" href="{{ base_url(false) }}:8080">
2023-07-28 13:40:47 +02:00
Traefik Dashboard
2023-08-11 20:19:42 +02:00
<x-external-link />
2023-07-28 13:40:47 +02:00
</a>
</button>
<x-forms.button isModal noStyle modalId="stopProxy"
2023-08-11 20:19:42 +02:00
class="flex items-center gap-2 cursor-pointer hover:text-white text-neutral-400">
<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">
2023-07-28 13:40:47 +02:00
<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
</x-forms.button>
2023-06-02 15:15:12 +02:00
</div>
2023-07-14 13:38:24 +02:00
@else
2023-07-28 14:44:26 +02:00
<x-forms.button isModal noStyle modalId="startProxy"
2023-08-11 20:19:42 +02:00
class="flex items-center gap-2 cursor-pointer hover:text-white">
2023-07-14 13:38:24 +02:00
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 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-07-28 14:44:26 +02:00
</x-forms.button>
2023-07-14 13:38:24 +02:00
@endif
2023-06-02 15:15:12 +02:00
@endif
</div>