• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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