• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Adding vhost.conf Automatically with Domain Setup

B

bsterzenbach

Guest
Greetings All.

Long time Ensim user making the jump to Plesk :)

I'm running psa v8.6.0_build86080930.03 os_RedHat el5

So far it's been a pretty easy switch, but I have one issue with setting up new domains:

I use some PEAR modules, so I need to add the PEAR path to my open_basedir directives. The only way I see to do this is by adding a vhost.conf for the domain and running the update command. Is there any way to do this dynamically during the domain setup?

Here is what I add with each domain:

(/var/www/vhosts/<domain>/conf/vhost.conf)
<Directory /var/www/vhosts/<domain>/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/tmp:/usr/share/psa-pear/:/usr/share/psa-pear/DB"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/tmp:/usr/share/psa-pear/:/usr/share/psa-pear/DB"
</IfModule>
</Directory>

I then run:
/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=<domain>

Is there perhaps some template where I can make this change and avoid the vhost.conf procedure?

Thanks for any help

Bill
 
I learned to use skeletons from my thePlanet support team - they are awesome
 
Back
Top