coolify/resources/views/livewire/project/service/edit-domain.blade.php

6 lines
618 B
PHP
Raw Normal View History

2024-04-11 15:42:37 +02:00
<form wire:submit.prevent='submit' class="flex flex-col w-full gap-2">
2024-04-12 13:15:24 +02:00
<x-forms.input required placeholder="https://app.coolify.io" label="Domains" id="application.fqdn"
2024-04-11 15:42:37 +02:00
helper="You can specify one domain with path or more with comma. You can specify a port to bind the domain to.<br><br><span class='text-helper'>Example</span><br>- http://app.coolify.io, https://cloud.coolify.io/dashboard<br>- http://app.coolify.io/api/v3<br>- http://app.coolify.io:3000 -> app.coolify.io will point to port 3000 inside the container. "></x-forms.input>
<x-forms.button type="submit">Save</x-forms.button>
</form>