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

73 lines
3.5 KiB
PHP
Raw Normal View History

2023-05-16 11:47:39 +02:00
<div x-data="{ stopProxy: false }">
<x-naked-modal show="stopProxy" action="stopProxy"
message='Are you sure you would like to stop the proxy? All resources will be unavailable.' />
2023-05-15 21:14:45 +02:00
@if ($server->settings->is_validated)
2023-05-22 22:30:33 +02:00
<div class="flex items-center gap-2 mb-2">
<h2 class="pb-0">Proxy</h2>
@if ($server->extra_attributes->proxy_type)
<x-inputs.button isHighlighted wire:click.prevent="installProxy">
Start/Reconfigure Proxy
</x-inputs.button>
<x-inputs.button x-on:click.prevent="stopProxy = true">Stop
</x-inputs.button>
2023-05-23 09:53:24 +02:00
<div wire:poll.5000ms="proxyStatus">
2023-05-22 22:30:33 +02:00
@if (
$server->extra_attributes->last_applied_proxy_settings &&
$server->extra_attributes->last_saved_proxy_settings !== $server->extra_attributes->last_applied_proxy_settings)
<div class="text-red-500">Configuration out of sync.</div>
@endif
</div>
@endif
@if ($server->extra_attributes->proxy_status === 'running')
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
<div class="flex items-center gap-2 text-sm" wire:loading.remove.delay.longer>
<span class="flex w-3 h-3 rounded-full bg-success"></span>
<span class="text-green-500">Running</span>
</div>
@else
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
<div class="flex items-center gap-2 text-sm" wire:loading.remove.delay.longer>
<span class="flex w-3 h-3 rounded-full bg-error"></span>
<span class="text-error">Stopped</span>
</div>
@endif
2023-05-16 11:39:18 +02:00
</div>
2023-05-22 22:30:33 +02:00
<livewire:activity-monitor />
2023-05-16 11:39:18 +02:00
@if ($server->extra_attributes->proxy_type)
2023-05-22 22:30:33 +02:00
<div x-init="$wire.checkProxySettingsInSync">
<div wire:loading wire:target="checkProxySettingsInSync">
<x-loading />
2023-05-16 12:50:00 +02:00
</div>
2023-05-22 22:30:33 +02:00
@isset($proxy_settings)
@if ($selectedProxy->value === 'TRAEFIK_V2')
<form wire:submit.prevent='saveConfiguration'>
<div class="flex items-center gap-2">
<h3>Configuration</h3>
<x-inputs.button type="submit">Save</x-inputs.button>
<x-inputs.button wire:click.prevent="resetProxy">
Reset Configuration
</x-inputs.button>
</div>
<h4>traefik.conf</h4>
<x-inputs.textarea class="text-xs" noDirty name="proxy_settings"
wire:model.defer="proxy_settings" rows="30" />
</form>
@endif
@endisset
2023-05-15 21:14:45 +02:00
</div>
2023-05-16 11:39:18 +02:00
@else
<select wire:model="selectedProxy">
<option value="{{ \App\Enums\ProxyTypes::TRAEFIK_V2 }}">
{{ \App\Enums\ProxyTypes::TRAEFIK_V2 }}
</option>
</select>
2023-05-18 13:26:35 +02:00
<x-inputs.button wire:click="setProxy">Set Proxy</x-inputs.button>
2023-05-15 21:14:45 +02:00
@endif
@else
<p>Server is not validated. Validate first.</p>
2023-05-03 07:23:45 +02:00
@endif
</div>