新子域的Plesk事件处理程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新子域的Plesk事件处理程序相关的知识,希望对你有一定的参考价值。
#!/bin/bash SUB="/home/httpd/vhosts/$1/subdomains/$2" if [ ! -d $SUB/conf ]; then mkdir $SUB/conf fi echo "ServerAlias $2" >> $SUB/conf/vhost.conf cat << __EOT > $SUB/conf/vhost.conf ServerAlias $2 <Directory $SUB/httpdocs> php_admin_value open_basedir none </Directory> __EOT /usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=$2.$1 service httpd restart
以上是关于新子域的Plesk事件处理程序的主要内容,如果未能解决你的问题,请参考以下文章