coolify/resources/views/livewire/settings/configuration.blade.php

49 lines
2.5 KiB
PHP
Raw Normal View History

2023-04-25 10:06:45 +02:00
<div>
2023-12-07 19:06:32 +01:00
<form wire:submit='submit' class="flex flex-col">
2023-06-02 12:34:45 +02:00
<div class="flex items-center gap-2">
2023-08-11 16:13:53 +02:00
<h2>Configuration</h2>
2023-05-25 14:05:44 +02:00
<x-forms.button type="submit">
2023-05-22 12:00:59 +02:00
Save
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-22 12:00:59 +02:00
</div>
2023-09-28 13:13:21 +02:00
<div>General configuration for your Coolify instance.</div>
2023-08-11 16:13:53 +02:00
2023-07-28 09:10:35 +02:00
<div class="flex flex-col gap-2 pt-4">
<div class="flex flex-wrap items-end gap-2">
2023-08-11 20:19:42 +02:00
<x-forms.input id="settings.fqdn" label="Instance's Domain" placeholder="https://coolify.io" />
<x-forms.input id="settings.instance_name" label="Instance's Name" placeholder="Coolify" />
2024-03-20 12:54:06 +01:00
<x-forms.input id="settings.custom_dns_servers" label="DNS Servers"
helper="DNS servers for validation FQDNs againts. A comma separated list of DNS servers."
2024-03-20 12:54:06 +01:00
placeholder="1.1.1.1,8.8.8.8" />
<div class="md:w-96">
<x-forms.checkbox instantSave id="is_dns_validation_enabled" label="Validate DNS settings?" />
</div>
2023-04-25 10:06:45 +02:00
</div>
2023-07-14 11:27:08 +02:00
2023-06-12 12:21:48 +02:00
{{-- <div class="flex gap-2 ">
2023-05-25 14:05:44 +02: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 12:21:48 +02:00
</div> --}}
2023-04-25 10:06:45 +02:00
</div>
</form>
2023-06-23 13:13:02 +02:00
<h2 class="pt-6">Advanced</h2>
<div class="text-right md:w-96">
2024-03-20 12:54:06 +01:00
@if (!is_null(env('AUTOUPDATE', null)))
2023-12-11 21:26:21 +01: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" />
@else
<x-forms.checkbox instantSave id="is_auto_update_enabled" label="Auto Update Coolify" />
2023-12-11 21:30:13 +01:00
@endif
2023-08-11 20:19:42 +02:00
<x-forms.checkbox instantSave id="is_registration_enabled" label="Registration Allowed" />
<x-forms.checkbox instantSave id="do_not_track" label="Do Not Track" />
{{-- @if ($next_channel)
<x-forms.checkbox instantSave helper="Not recommended. Only if you like to live on the edge."
2023-12-07 19:06:32 +01:00
id="next_channel" label="Enable pre-release (early) updates" />
@else
<x-forms.checkbox disabled instantSave
2024-05-03 16:06:06 +02:00
helper="Currently disabled. Not recommended. Only if you like to live on the edge." id="next_channel"
2023-12-07 19:06:32 +01:00
label="Enable pre-release (early) updates" />
@endif --}}
2023-04-25 10:06:45 +02:00
</div>
</div>