• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Please beaware of a breaking change in the REST API on the next Plesk release (18.0.62).
    Starting from Plesk Obsidian 18.0.62, requests to REST API containing the Content-Type header with a media-type directive other than “application/json” will result in the HTTP “415 Unsupported Media Type” client error response code. Read more here

vhost.conf content not available

gijsbert

Basic Pleskian
For some domain I like to add /usr/share/pear to the include_path using a vhost.conf file.

1) First of all I make sure that no Include line is added in the last_httpd.conf:

grep -R .conf /var/www/vhosts/system/<domain>/conf/last_httpd.conf | grep Include ==> no output

2) Now I make a vhost.conf with the following content:

<Directory /var/www/vhosts/<domain>/httpdocs>
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/usr/share/pear:/tmp"
php_admin_value include_path ".:/usr/share/pear"
</Directory>

3) Reconfigure the domain using /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain <domain>

If I now check the last_httpd.conf, the file is included:

grep -R .conf /var/www/vhosts/system/<domain>/conf/last_httpd.conf | grep Include ==> results in the correct entry: Include "/var/www/vhosts/system/<domain>/conf/vhost.conf"

But when I finally check the include_path and the open_basedir using a simple phpinfo() the entries of my vhost.conf do not appear. Am I doing something wrong here?

Kind regards,

Gijsbert
 
The custom php.ini configurations for each domain is located at:

For Plesk version 10.3 - 11.0:
/var/www/vhosts/DOMAIN.COM/etc/php.ini
For Plesk version 11.5:
/var/www/vhosts/system/DOMAIN.COM/etc/php.ini

Please see the documentation for it, depending on your version:


You might as well like the Parallels KB - article:

How do I enable custom php.ini for particular virtual host? ( KB - article 111 697 )
 
Back
Top