DA install without automatic TLS certificates

wnet

New member
Joined
Sep 9, 2022
Messages
4
i would like to know if it is possible to install DA without : lego or letsencrypt or zerossl from the word go. and if yes, it would be kindly appreciated if anyone can share / provide the steps needed to achieve the afore mentioned. i would take care on my own of the ssl config part both server and domains after install. and I asume the risk of tdealing with browser warnings upon first login.

regards and thank you
 
Hi! zEitEr

this is the command I used to install it :

wget -O setup.sh directadmin.com/setup.sh
chmod 755 setup.sh
DA_SKIP_CSF="true" DA_INTERACTIVE_CUSTOMBUILD="true" ./setup.sh licence number

i attached directadmin.conf + options.conf

to review.

to be more clear what I really DO NOT WANT TO HAPPEN is that upon installation DA DO NOT automatically setup the server / hostname certs or even better no certs at all. the same as it used to be some time ago. i do not want lego, letsencrypt, zerrossl or any one of this whatsoever. i have sectigo ssls for the domains. i will use those.

reagard and thank you
 

Attachments

@wnet, at the moment DA installer will NOT automatically try getting TLS certificates only if DA is being installed without CustomBuild. For example:

Code:
DA_SKIP_CSF="true" DA_SKIP_CUSTOMBUILD="true" ./setup.sh {license-key}

In other words DA_SKIP_CUSTOMBUILD option controls two things:
  • should we execute CustomBuild after DA is installed
  • should we try auto-issuing the TLS certificate
We had plans on splitting this option into two DA_SKIP_AUTO_TLS_CERT and DA_SKIP_CUSTOMBUILD but in the end discarded the idea as not really useful. If you would prefer having such option we could add it in the upcoming DA release.
 
Back
Top