• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Plesk WWW prefix autocreator script

C

Cameleon

Guest
This is subdomain prefix - automatic creation

If someone want to make life easy, i dont know only how to add DNS from command line like this

Event handler in plesk

Subdomain created
Command: /usr/local/psa/bin/create_subdomain.sh <new_subdomain_name> <new_domain_name>

normal 50

Subdomain deleted
Command: usr/local/psa/admin/sbin/websrvmng -u --vhost-name=<new_domain_name>

normal 50

content of file wich need to be in /usr/local/psa/bin/ create_subdomain.sh

#!/bin/bash

echo "ServerAlias www.$1.$2" >> /var/www/vhosts/$2/subdomains/$1/conf/vhost.conf

/usr/local/psa/admin/sbin/websrvmng -u --vhost-name=$2

exit
 
question: Normal subdomain dns zone is added wheen i create subdomain but it looks like this
test.mysite.pl. A IPP.IPP.IPP.IPP
i need to add one more like this
*.test.mysite.pl. A IPP.IPP.IPP.IPP
by auto or by script or anyhow, not by hand....
 
Back
Top