Improve Advanced Settings helper texts for clarity (#7453)
This commit is contained in:
commit
cf06ddb3f4
1 changed files with 6 additions and 6 deletions
|
|
@ -18,28 +18,28 @@ class="flex flex-col h-full gap-8 sm:flex-row">
|
||||||
<div class="flex flex-col gap-1">
|
<div class="flex flex-col gap-1">
|
||||||
<div class="md:w-96">
|
<div class="md:w-96">
|
||||||
<x-forms.checkbox instantSave id="is_registration_enabled"
|
<x-forms.checkbox instantSave id="is_registration_enabled"
|
||||||
helper="If enabled, users can register themselves. If disabled, only administrators can create new users."
|
helper="Allow users to self-register. If disabled, only administrators can create accounts."
|
||||||
label="Registration Allowed" />
|
label="Registration Allowed" />
|
||||||
</div>
|
</div>
|
||||||
<div class="md:w-96">
|
<div class="md:w-96">
|
||||||
<x-forms.checkbox instantSave id="do_not_track"
|
<x-forms.checkbox instantSave id="do_not_track"
|
||||||
helper="If enabled, Coolify will not track any data. This is useful if you are concerned about privacy."
|
helper="Opt out of reporting this instance to coolify.io's installation count. No other data is collected."
|
||||||
label="Do Not Track" />
|
label="Do Not Track" />
|
||||||
</div>
|
</div>
|
||||||
<h4 class="pt-4">DNS Settings</h4>
|
<h4 class="pt-4">DNS Settings</h4>
|
||||||
<div class="md:w-96">
|
<div class="md:w-96">
|
||||||
<x-forms.checkbox instantSave id="is_dns_validation_enabled"
|
<x-forms.checkbox instantSave id="is_dns_validation_enabled"
|
||||||
helper="If you set a custom domain, Coolify will validate the domain in your DNS provider."
|
helper="Verify that custom domains are correctly configured in DNS before deployment. Prevents deployment failures from DNS misconfigurations."
|
||||||
label="DNS Validation" />
|
label="DNS Validation" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<x-forms.input id="custom_dns_servers" label="Custom DNS Servers"
|
<x-forms.input id="custom_dns_servers" label="Custom DNS Servers"
|
||||||
helper="DNS servers to validate domains against. A comma separated list of DNS servers."
|
helper="Custom DNS servers for domain validation. Comma-separated list (e.g., 1.1.1.1,8.8.8.8). Leave empty to use system defaults."
|
||||||
placeholder="1.1.1.1,8.8.8.8" />
|
placeholder="1.1.1.1,8.8.8.8" />
|
||||||
<h4 class="pt-4">API Settings</h4>
|
<h4 class="pt-4">API Settings</h4>
|
||||||
<div class="md:w-96">
|
<div class="md:w-96">
|
||||||
<x-forms.checkbox instantSave id="is_api_enabled" label="API Access"
|
<x-forms.checkbox instantSave id="is_api_enabled" label="API Access"
|
||||||
helper="If enabled, the API will be enabled. If disabled, the API will be disabled." />
|
helper="If enabled, authenticated requests to Coolify's REST API will be allowed. Configure API tokens in Security > API Tokens." />
|
||||||
</div>
|
</div>
|
||||||
<x-forms.input id="allowed_ips" label="Allowed IPs for API Access"
|
<x-forms.input id="allowed_ips" label="Allowed IPs for API Access"
|
||||||
helper="Allowed IP addresses or subnets for API access.<br>Supports single IPs (192.168.1.100) and CIDR notation (192.168.1.0/24).<br>Use comma to separate multiple entries.<br>Use 0.0.0.0 or leave empty to allow from anywhere."
|
helper="Allowed IP addresses or subnets for API access.<br>Supports single IPs (192.168.1.100) and CIDR notation (192.168.1.0/24).<br>Use comma to separate multiple entries.<br>Use 0.0.0.0 or leave empty to allow from anywhere."
|
||||||
|
|
@ -53,7 +53,7 @@ class="flex flex-col h-full gap-8 sm:flex-row">
|
||||||
<h4 class="pt-4">Confirmation Settings</h4>
|
<h4 class="pt-4">Confirmation Settings</h4>
|
||||||
<div class="md:w-96">
|
<div class="md:w-96">
|
||||||
<x-forms.checkbox instantSave id=" is_sponsorship_popup_enabled" label="Show Sponsorship Popup"
|
<x-forms.checkbox instantSave id=" is_sponsorship_popup_enabled" label="Show Sponsorship Popup"
|
||||||
helper="When enabled, sponsorship popups will be shown monthly to users. When disabled, the sponsorship popup will be permanently hidden for all users." />
|
helper="Show monthly sponsorship reminders to support Coolify development. Disable to hide these messages permanently." />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col gap-1">
|
<div class="flex flex-col gap-1">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue