SSL and Support system related

youstable

Verified User
Joined
Aug 28, 2019
Messages
82
Location
India
Hi,

We are experiencing some issues with DA

1. Every time I have to modify customer to give them SSL permission, how do I make it default for all customers?
2. I want to disable Support system within the DA panel
 
What exactly is the happening in this case?
Do they not have SSL in their package, or do they have SSL in their package but it's not enabled by default?
Not enabled by default means they have to go to their domain setup and enable it.
 
If the last one is the case, so they have SSL but it's still disabled in their domain setup, try this via ssh for exising users:

Code:
cd /usr/local/directadmin/data/users
files=`find . -name "user.conf"`; for file in $files; do sed -i $file -e "s,ssl=OFF,ssl=ON,g"; done;
If enabled in the user package, it should also be enabled by default when creating a new user.
 
If the last one is the case, so they have SSL but it's still disabled in their domain setup, try this via ssh for exising users:

Code:
cd /usr/local/directadmin/data/users
files=`find . -name "user.conf"`; for file in $files; do sed -i $file -e "s,ssl=OFF,ssl=ON,g"; done;
If enabled in the user package, it should also be enabled by default when creating a new user.
It worked
 
Back
Top