2023-04-25 08:06:45 +00:00
< div >
< form wire : submit . prevent = 'submit' class = " flex flex-col " >
2023-05-22 13:47:40 +00:00
< div class = " flex items-center gap-2 border-b-2 border-solid border-coolgray-200 " >
2023-05-22 10:00:59 +00:00
< h1 > Settings </ h1 >
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 >
< div class = " flex flex-col gap-2 " >
< div class = " flex flex-col gap-2 xl:flex-row " >
2023-05-25 12:05:44 +00:00
< x - forms . input id = " settings.fqdn " label = " Coolify's Domain " />
< x - forms . input id = " settings.wildcard_domain " label = " Wildcard Domain "
2023-05-22 09:21:03 +00:00
helper = " Wildcard domain for your applications. If you set this, you will get a random generated domain for your new applications.<br><br><span class='inline-block font-bold text-warning'>Example</span>https://example.com<br>Your applications will get https://randomthing.example.com " />
2023-04-25 08:06:45 +00:00
</ div >
2023-05-22 10:00:59 +00:00
< div class = " flex flex-col gap-2 xl:flex-row " >
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-04-25 08:06:45 +00:00
</ div >
</ div >
</ form >
2023-05-22 10:00:59 +00:00
< h3 > Advanced </ h3 >
2023-04-25 08:06:45 +00:00
< div class = " flex flex-col pt-4 text-right w-52 " >
2023-05-25 12:05:44 +00:00
< x - forms . checkbox instantSave id = " is_auto_update_enabled " label = " Auto Update Coolify " />
< x - forms . checkbox instantSave id = " is_registration_enabled " label = " Registration Allowed " />
{{ -- < x - forms . checkbox instantSave id = " is_https_forced " label = " Force https? " /> -- }}
< x - forms . checkbox instantSave id = " do_not_track " label = " Do Not Track " />
2023-04-25 08:06:45 +00:00
</ div >
2023-05-26 10:24:59 +00:00
@ if ( auth () -> user () -> isPartOfRootTeam ())
< livewire : force - upgrade />
@ endif
2023-04-25 08:06:45 +00:00
</ div >