2023-10-09 09:00:18 +00:00
< div x - init = " $wire .validateServer(false) " >
2023-07-28 11:31:47 +00:00
< x - modal yesOrNo modalId = " changeLocalhost " modalTitle = " Change Localhost " action = " submit " >
< x - slot : modalBody >
< p > 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 .</ p >
</ x - slot : modalBody >
</ x - modal >
2023-08-16 15:18:50 +00:00
< form wire : submit . prevent = 'submit' class = " flex flex-col " >
< div class = " flex gap-2 " >
< h2 > General </ h2 >
@ if ( $server -> id === 0 )
< x - forms . button isModal modalId = " changeLocalhost " > Save </ x - forms . button >
@ else
< x - forms . button type = " submit " > Save </ x - forms . button >
@ endif
2023-08-24 19:38:18 +00:00
2023-08-16 15:18:50 +00:00
</ div >
2023-09-12 11:14:01 +00:00
@ if ( ! $server -> isFunctional ())
2023-08-16 15:18:50 +00:00
You can ' t use this server until it is validated .
@ else
2023-09-24 08:48:54 +00:00
Server is reachable and validated .
2023-08-16 15:18:50 +00:00
@ endif
2023-10-09 09:00:18 +00:00
@ if (( ! $server -> settings -> is_reachable || ! $server -> settings -> is_usable ) && $server -> id !== 0 )
2023-10-11 11:12:29 +00:00
< x - forms . button class = " mt-8 mb-4 font-bold box-without-bg bg-coollabs hover:bg-coollabs-100 "
wire : click . prevent = 'validateServer' isHighlighted >
2023-10-09 09:00:18 +00:00
Validate Server & Install Docker Engine
</ x - forms . button >
@ endif
2023-10-11 11:47:14 +00:00
@ if (( ! $server -> settings -> is_reachable || ! $server -> settings -> is_usable ) && $server -> id === 0 )
2023-10-11 11:30:36 +00: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 15:18:50 +00: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 " />
< x - forms . input placeholder = " https://example.com " id = " wildcard_domain " label = " Wildcard Domain "
2023-10-11 11:47:14 +00:00
helper = " Wildcard domain for your applications. If you set this, you will get a random generated domain for your new applications.<br><span class='font-bold text-white'>Example:</span><br>In case you set:<span class='text-helper'>https://example.com</span> your applications will get:<br> <span class='text-helper'>https://randomId.example.com</span> " />
2023-08-16 15:18:50 +00:00
{{ -- < x - forms . checkbox disabled type = " checkbox " id = " server.settings.is_part_of_swarm "
label = " Is it part of a Swarm cluster? " /> -- }}
</ div >
< div class = " flex flex-col w-full gap-2 lg:flex-row " >
2023-11-06 11:31:02 +00:00
< 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 15:18:50 +00: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 06:58:32 +00:00
</ div >
2023-04-25 08:47:13 +00:00
</ div >
2023-09-23 11:34:40 +00:00
< div class = " w-64 " >
2023-10-09 09:00:18 +00:00
< x - forms . checkbox instantSave
helper = " If you are using Cloudflare Tunnels, enable this. It will proxy all ssh requests to your server through Cloudflare.<span class='text-warning'>Coolify does not install/setup Cloudflare (cloudflared) on your server.</span> "
2023-09-23 11:34:40 +00:00
id = " server.settings.is_cloudflare_tunnel " label = " Cloudflare Tunnel " />
</ div >
2023-08-16 15:18:50 +00:00
</ div >
2023-10-09 09:00:18 +00:00
2023-09-12 11:14:01 +00:00
@ if ( $server -> isFunctional ())
2023-07-25 12:43:49 +00:00
< h3 class = " py-4 " > Settings </ h3 >
2023-09-14 09:37:20 +00:00
< x - forms . input id = " cleanup_after_percentage " label = " Disk Cleanup threshold (%) " required
helper = " Disk cleanup job will be executed if disk usage is more than this number. " />
2023-08-16 15:18:50 +00:00
@ endif
</ form >
2023-10-09 09:00:18 +00:00
< script >
Livewire . on ( 'installDocker' , () => {
installDocker . showModal ();
})
</ script >
2023-04-25 08:47:13 +00:00
</ div >