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

72 lines
3.6 KiB
PHP
Raw Normal View History

2023-07-28 13:31:47 +02:00
<div>
2023-10-11 11:00:40 +02:00
@if (data_get($server, 'proxy.type'))
<div x-init="$wire.loadProxyConfiguration">
@if ($selectedProxy === 'TRAEFIK_V2')
2023-12-07 19:06:32 +01:00
<form wire:submit='submit'>
2023-10-11 11:00:40 +02:00
<div class="flex items-center gap-2">
<h2>Configuration</h2>
<x-forms.button type="submit">Save</x-forms.button>
@if ($server->proxy->status === 'exited')
<x-forms.button wire:click.prevent="change_proxy">Switch Proxy</x-forms.button>
2023-06-23 14:35:13 +02:00
@endif
2023-10-11 11:00:40 +02:00
</div>
<div class="pt-3 pb-4 ">Traefik v2</div>
@if (
$server->proxy->last_applied_settings &&
$server->proxy->last_saved_settings !== $server->proxy->last_applied_settings)
<div class="text-red-500 ">Configuration out of sync. Restart the proxy to apply the new
configurations.
2023-06-23 14:35:13 +02:00
</div>
2023-10-11 11:00:40 +02:00
@endif
<x-forms.input placeholder="https://app.coolify.io" id="redirect_url" label="Default Redirect 404"
helper="All urls that has no service available will be redirected to this domain." />
<div wire:loading wire:target="loadProxyConfiguration" class="pt-4">
<x-loading text="Loading proxy configuration..." />
2023-09-06 15:00:56 +02:00
</div>
2023-10-11 11:00:40 +02:00
<div wire:loading.remove wire:target="loadProxyConfiguration">
@if ($proxy_settings)
<div class="flex flex-col gap-2 pt-2">
<x-forms.textarea label="Configuration file: traefik.conf" name="proxy_settings"
2023-12-07 19:06:32 +01:00
wire:model="proxy_settings" rows="30" />
2023-10-11 11:00:40 +02:00
<x-forms.button wire:click.prevent="reset_proxy_configuration">
Reset configuration to default
</x-forms.button>
</div>
@endif
2023-09-25 09:17:42 +02:00
</div>
2023-10-11 11:00:40 +02:00
</form>
@elseif($selectedProxy === 'NONE')
<div class="flex items-center gap-2">
<h2>Configuration</h2>
<x-forms.button wire:click.prevent="change_proxy">Switch Proxy</x-forms.button>
</div>
<div class="pt-3 pb-4">Custom (None) Proxy Selected</div>
2023-08-11 20:19:42 +02:00
@else
2023-10-11 11:00:40 +02:00
<div class="flex items-center gap-2">
<h2>Configuration</h2>
<x-forms.button wire:click.prevent="change_proxy">Switch Proxy</x-forms.button>
</div>
@endif
@else
<div>
<h2>Configuration</h2>
<div class="subtitle">Select a proxy you would like to use on this server.</div>
<div class="grid gap-4">
<x-forms.button class="box" wire:click="select_proxy('NONE')">
Custom (None)
</x-forms.button>
<x-forms.button class="box" wire:click="select_proxy('TRAEFIK_V2')">
Traefik
v2
</x-forms.button>
<x-forms.button disabled class="box">
Nginx
</x-forms.button>
<x-forms.button disabled class="box">
Caddy
</x-forms.button>
2023-08-11 20:19:42 +02:00
</div>
2023-10-11 11:00:40 +02:00
</div>
2023-08-11 20:19:42 +02:00
@endif
</div>