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

64 lines
3.3 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-06-15 13:51:31 +02:00
@if ($server->settings->is_reachable)
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')
2023-06-02 15:15:12 +02:00
<form wire:submit.prevent='saveConfiguration({{ $server }})'>
2023-05-22 22:30:33 +02:00
<div class="flex items-center gap-2">
2023-06-02 15:15:12 +02:00
<h2>Proxy</h2>
2023-06-07 22:07:26 +02:00
<x-forms.button type="submit">Save</x-forms.button>
2023-06-08 08:39:00 +02:00
@if ($server->extra_attributes->proxy_status === 'exited')
<x-forms.button wire:click.prevent="switchProxy">Switch Proxy</x-forms.button>
@endif
2023-06-02 15:15:12 +02:00
<livewire:server.proxy.status :server="$server" />
2023-05-22 22:30:33 +02:00
</div>
2023-06-15 14:18:49 +02:00
<div class="pt-3 pb-4 text-sm">Traefik v2</div>
2023-06-02 15:15:12 +02:00
@if (
$server->extra_attributes->proxy_last_applied_settings &&
$server->extra_attributes->proxy_last_saved_settings !== $server->extra_attributes->proxy_last_applied_settings)
<div class="text-sm text-red-500">Configuration out of sync. Restart to get the new configs.
</div>
@endif
2023-06-16 10:45:27 +02:00
<div class="container w-full mx-auto">
2023-06-13 10:02:58 +02:00
<livewire:activity-monitor :header="true" />
</div>
2023-06-08 08:39:00 +02:00
<div class="flex flex-col gap-2">
<x-forms.textarea label="Configuration file: traefik.conf" class="text-xs" noDirty
name="proxy_settings" wire:model.defer="proxy_settings" rows="30" />
<x-forms.button wire:click.prevent="resetProxy">
Reset configuration to default
</x-forms.button>
</div>
2023-05-22 22:30:33 +02:00
</form>
@endif
@endisset
2023-05-15 21:14:45 +02:00
</div>
2023-05-16 11:39:18 +02:00
@else
2023-06-02 15:15:12 +02:00
<div>
2023-06-08 08:18:14 +02:00
<h2>Proxy</h2>
2023-06-08 08:39:00 +02:00
<div class="pt-2 pb-10 text-sm">Select a proxy you would like to use on this server.</div>
<div class="flex gap-2">
<x-forms.button class="w-32 box" wire:click="setProxy('{{ \App\Enums\ProxyTypes::TRAEFIK_V2 }}')">
Traefik
v2
</x-forms.button>
<x-forms.button disabled class="w-32 box">
Nginx
</x-forms.button>
<x-forms.button disabled class="w-32 box">
Caddy
</x-forms.button>
</div>
2023-06-02 15:15:12 +02:00
</div>
2023-05-15 21:14:45 +02:00
@endif
@else
2023-06-02 15:15:12 +02:00
<div class="text-sm">Server is not validated. Validate first.</div>
2023-05-03 07:23:45 +02:00
@endif
</div>