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

110 lines
7.0 KiB
PHP
Raw Normal View History

2023-11-20 10:32:06 +01:00
<div>
<form wire:submit.prevent='submit' class="flex flex-col">
2023-08-16 17:18:50 +02:00
<div class="flex gap-2">
<h2>General</h2>
@if ($server->id === 0)
2024-01-31 16:14:12 +01:00
<x-new-modal buttonTitle="Save" title="Change Localhost" action="submit">
You could lost a lot of functionalities if you change the server details of the server where Coolify
is
running on.<br>Please think again.
</x-new-modal>
2023-08-16 17:18:50 +02:00
@else
<x-forms.button type="submit">Save</x-forms.button>
2024-02-15 13:52:54 +01:00
<x-new-modal buttonTitle="Revalidate" title="Revalidate" action="revalidate">
This will revalidate the server, install / update Docker Engine, Docker Compose and all related
configuration. It will also restart Docker Engine, so your running containers will be unreachable
for the time being.
</x-new-modal>
2023-08-16 17:18:50 +02:00
@endif
</div>
2024-02-15 13:52:54 +01:00
@if ($server->isFunctional())
2023-09-24 10:48:54 +02:00
Server is reachable and validated.
2024-02-15 13:52:54 +01:00
@else
You can't use this server until it is validated.
2023-08-16 17:18:50 +02:00
@endif
2023-10-09 11:00:18 +02:00
@if ((!$server->settings->is_reachable || !$server->settings->is_usable) && $server->id !== 0)
<x-slide-over closeWithX fullScreen>
<x-slot:title>Validating & Configuring</x-slot:title>
<x-slot:content>
<livewire:server.validate-and-install :server="$server" />
</x-slot:content>
<x-forms.button @click="slideOverOpen=true"
class="w-full mt-8 mb-4 font-bold box-without-bg bg-coollabs hover:bg-coollabs-100"
wire:click.prevent='validateServer' isHighlighted>
Validate Server & Install Docker Engine
</x-forms.button>
</x-slide-over>
2023-10-09 11:00:18 +02:00
@endif
2023-10-11 13:47:14 +02:00
@if ((!$server->settings->is_reachable || !$server->settings->is_usable) && $server->id === 0)
2023-10-11 13:30:36 +02:00
<x-forms.button class="mt-8 mb-4 font-bold box-without-bg bg-coollabs hover:bg-coollabs-100"
wire:click.prevent='checkLocalhostConnection' isHighlighted>
Validate Server
</x-forms.button>
@endif
2023-08-16 17:18:50 +02:00
<div class="flex flex-col gap-2 pt-4">
<div class="flex flex-col w-full gap-2 lg:flex-row">
<x-forms.input id="server.name" label="Name" required />
<x-forms.input id="server.description" label="Description" />
@if (!$server->settings->is_swarm_worker && !$server->settings->is_build_server)
2023-12-18 14:01:25 +01:00
<x-forms.input placeholder="https://example.com" id="wildcard_domain" label="Wildcard Domain"
2024-02-08 12:34:01 +01:00
helper='A wildcard domain allows you to receive a randomly generated domain for your new applications. <br><br>For instance, if you set "https://example.com" as your wildcard domain, your applications will receive domains like "https://randomId.example.com".' />
2023-12-18 14:01:25 +01:00
@endif
2023-11-28 15:49:24 +01:00
2023-08-16 17:18:50 +02:00
</div>
<div class="flex flex-col w-full gap-2 lg:flex-row">
<x-forms.input id="server.ip" label="IP Address/Domain"
helper="An IP Address (127.0.0.1) or domain (example.com)." required />
2023-08-16 17:18:50 +02:00
<div class="flex gap-2">
<x-forms.input id="server.user" label="User" required />
<x-forms.input type="number" id="server.port" label="Port" required />
2023-06-23 08:58:32 +02:00
</div>
2023-04-25 10:47:13 +02:00
</div>
2023-11-28 15:49:24 +01:00
<div class="w-64">
@if (!$server->isLocalhost())
@if ($server->settings->is_build_server)
<x-forms.checkbox instantSave disabled id="server.settings.is_build_server"
label="Use it as a build server?" />
2023-12-18 14:34:04 +01:00
@else
<x-forms.checkbox instantSave
2024-02-08 12:34:01 +01:00
helper="If you are using Cloudflare Tunnels, enable this. It will proxy all SSH requests to your server through Cloudflare.<br><span class='text-warning'>Coolify does not install or set up Cloudflare (cloudflared) on your server.</span>"
id="server.settings.is_cloudflare_tunnel" label="Cloudflare Tunnel" />
@if ($server->isSwarm())
<div class="pt-6"> Swarm support is experimental. </div>
@endif
@if ($server->settings->is_swarm_worker)
<x-forms.checkbox disabled instantSave type="checkbox" id="server.settings.is_swarm_manager"
helper="For more information, please read the documentation <a class='text-white' href='https://coolify.io/docs/docker/swarm' target='_blank'>here</a>."
label="Is it a Swarm Manager?" />
@else
<x-forms.checkbox instantSave type="checkbox" id="server.settings.is_swarm_manager"
helper="For more information, please read the documentation <a class='text-white' href='https://coolify.io/docs/docker/swarm' target='_blank'>here</a>."
label="Is it a Swarm Manager?" />
@endif
@if ($server->settings->is_swarm_manager)
<x-forms.checkbox disabled instantSave type="checkbox" id="server.settings.is_swarm_worker"
helper="For more information, please read the documentation <a class='text-white' href='https://coolify.io/docs/docker/swarm' target='_blank'>here</a>."
label="Is it a Swarm Worker?" />
@else
<x-forms.checkbox instantSave type="checkbox" id="server.settings.is_swarm_worker"
helper="For more information, please read the documentation <a class='text-white' href='https://coolify.io/docs/docker/swarm' target='_blank'>here</a>."
label="Is it a Swarm Worker?" />
@endif
@endif
2023-11-28 15:49:24 +01:00
@endif
</div>
2023-08-16 17:18:50 +02:00
</div>
2023-10-09 11:00:18 +02:00
2023-09-12 13:14:01 +02:00
@if ($server->isFunctional())
<h3 class="py-4">Settings</h3>
2024-01-24 11:12:23 +01:00
<div class="flex gap-2">
<x-forms.input id="cleanup_after_percentage" label="Disk cleanup threshold (%)" required
2024-02-08 12:34:01 +01:00
helper="The disk cleanup task will run when the disk usage exceeds this threshold." />
<x-forms.input id="server.settings.concurrent_builds" label="Number of concurrent builds" required
2024-02-08 12:34:01 +01:00
helper="You can specify the number of simultaneous build processes/deployments that should run concurrently." />
<x-forms.input id="server.settings.dynamic_timeout" label="Deployment timeout (seconds)" required
helper="You can define the maximum duration for a deployment to run before timing it out." />
2024-01-24 11:12:23 +01:00
</div>
2023-08-16 17:18:50 +02:00
@endif
</form>
2023-04-25 10:47:13 +02:00
</div>