2023-04-25 08:06:45 +00:00
< div >
2023-12-07 18:06:32 +00:00
< form wire : submit = 'submit' class = " flex flex-col " >
2023-06-02 10:34:45 +00:00
< div class = " flex items-center gap-2 " >
2023-08-11 14:13:53 +00:00
< h2 > Configuration </ h2 >
2023-05-25 12:05:44 +00:00
< x - forms . button type = " submit " >
2023-05-22 10:00:59 +00:00
Save
2023-05-25 12:05:44 +00:00
</ x - forms . button >
2023-05-22 10:00:59 +00:00
</ div >
2023-09-28 11:13:21 +00:00
< div > General configuration for your Coolify instance .</ div >
2023-08-11 14:13:53 +00:00
2023-07-28 07:10:35 +00:00
< div class = " flex flex-col gap-2 pt-4 " >
2024-05-17 07:52:19 +00:00
< div class = " flex flex-wrap items-end gap-2 " >
2024-08-05 12:44:20 +00:00
< h3 class = " pt-6 " > Instance Settings </ h3 >
2023-08-11 18:19:42 +00:00
< x - forms . input id = " settings.fqdn " label = " Instance's Domain " placeholder = " https://coolify.io " />
2024-06-22 08:22:57 +00:00
< x - forms . input id = " settings.instance_name " label = " Instance's Name " placeholder = " Coolify " />
2024-08-05 12:44:20 +00:00
< h3 class = " pt-6 w-full " > DNS Validation </ h3 >
< div class = " flex flex-wrap items-end gap-2 md:w-96 " >
< x - forms . checkbox instantSave id = " is_dns_validation_enabled " label = " Enable DNS validation " />
</ div >
2024-03-20 11:54:06 +00:00
< x - forms . input id = " settings.custom_dns_servers " label = " DNS Servers "
2024-05-06 10:33:22 +00:00
helper = " DNS servers for validation FQDNs againts. A comma separated list of DNS servers. "
2024-03-20 11:54:06 +00:00
placeholder = " 1.1.1.1,8.8.8.8 " />
2023-04-25 08:06:45 +00:00
</ div >
2023-07-14 09:27:08 +00:00
2023-06-12 10:21:48 +00:00
{{ -- < div class = " flex gap-2 " >
2023-05-25 12:05:44 +00:00
< x - forms . input type = " number " id = " settings.public_port_min " label = " Public Port Min " />
< x - forms . input type = " number " id = " settings.public_port_max " label = " Public Port Max " />
2023-06-12 10:21:48 +00:00
</ div > -- }}
2024-07-01 14:26:50 +00:00
2024-08-05 12:44:20 +00:00
</ div >
< h3 class = " pt-6 " > API </ h3 >
2024-07-01 14:26:50 +00:00
< div class = " md:w-96 " >
< x - forms . checkbox instantSave id = " is_api_enabled " label = " Enabled " />
</ div >
< x - forms . input id = " settings.allowed_ips " label = " Allowed IPs "
helper = " Allowed IP lists for the API. A comma separated list of IPs. Empty means you allow from everywhere. "
placeholder = " 1.1.1.1,8.8.8.8 " />
2023-04-25 08:06:45 +00:00
</ form >
2024-07-01 14:26:50 +00:00
2023-06-23 11:13:02 +00:00
< h2 class = " pt-6 " > Advanced </ h2 >
2024-05-05 17:17:54 +00:00
< div class = " text-right md:w-96 " >
2024-03-20 11:54:06 +00:00
@ if ( ! is_null ( env ( 'AUTOUPDATE' , null )))
2023-12-11 20:26:21 +00:00
< x - forms . checkbox instantSave helper = " AUTOUPDATE is set in .env file, you need to modify it there. " disabled
id = " is_auto_update_enabled " label = " Auto Update Coolify " />
2023-12-11 20:19:45 +00:00
@ else
2024-05-05 17:17:54 +00:00
< x - forms . checkbox instantSave id = " is_auto_update_enabled " label = " Auto Update Coolify " />
2024-08-05 12:44:20 +00:00
@ if ( $is_auto_update_enabled )
2024-08-05 18:33:20 +00:00
< x - forms . input id = " auto_update_frequency " label = " Auto Update Frequency " placeholder = " 0 0 * * * " helper = " Cron expression for auto update frequency (automatically update coolify). Default is every day at 00:00 " />
2024-08-05 12:44:20 +00:00
@ endif
2024-08-06 09:32:37 +00:00
< x - forms . input id = " update_check_frequency " label = " Update Check Frequency " placeholder = " 0 */11 * * * " helper = " Cron expression for update check frequency (check for new Coolify versions and pull new Service Templates from CDN). Default is every 12 hours at 11:00 and 23:00 " />
2023-12-11 20:30:13 +00:00
@ endif
2023-08-11 18:19:42 +00:00
< x - forms . checkbox instantSave id = " is_registration_enabled " label = " Registration Allowed " />
< x - forms . checkbox instantSave id = " do_not_track " label = " Do Not Track " />
2023-04-25 08:06:45 +00:00
</ div >
</ div >