setup: set initial value for tls config

This commit is contained in:
Girish Ramakrishnan
2026-01-29 12:24:11 +01:00
parent 2bb9c50db9
commit 94a62b040b
2 changed files with 14 additions and 19 deletions
+1 -3
View File
@@ -31,7 +31,7 @@ const setupToken = ref('');
const zoneName = ref('');
const provider = ref('');
const dnsConfig = ref(DomainsModel.createEmptyConfig());
const tlsProvider = ref('letsenc-prod-wildcard');
const tlsProvider = ref('letsencrypt-prod-wildcard');
const showAdvanced = ref(false);
const customNameservers = ref(false);
const ipv4Provider = ref('generic');
@@ -151,8 +151,6 @@ onMounted(async () => {
} else if (status.provider === 'ami') {
// aws marketplace made a policy change that they one cannot provide route53 IAM credentials
provider.value = 'wildcard';
} else { // some default to make the form not feel "empty"
provider.value = 'digitalocean';
}
const [error2, result] = await provisionModel.detectIp();