netstepinc
Verified User
Ubuntu 12.04
Apache 2.2.24
DirectAdmin 1.43.1
Php 5.3.26
I'm trying to replicate some capabilities from my Plesk server that I'm putting out of my mysery, but a bit confused about how to use Custom httpd configuration to get the desired result.
GOAL: Symlink a CMS instance to a core file set.
I've been searching the forum and help files, but I'd like to have a degree of certainty I'm doing this correctly.
Any help would be truly appreciated.
Help doc provides an example, but I'm not sure how to translate that to my setup.
http://help.directadmin.com/item.php?id=182
|?OPEN_BASEDIR_PATH=`HOME`/:/tmp:/usr/local/lib/php/|
I'm also wondering if I need to add anything else like follow symlinks.
The Plesk vhost.conf file contained:
Thank you for your help.
Apache 2.2.24
DirectAdmin 1.43.1
Php 5.3.26
I'm trying to replicate some capabilities from my Plesk server that I'm putting out of my mysery, but a bit confused about how to use Custom httpd configuration to get the desired result.
GOAL: Symlink a CMS instance to a core file set.
Code:
ln -s /home/master/domains/master.com/public_html/filename.php /home/slave/domains/slave.com/public_html/filename.php
I've been searching the forum and help files, but I'd like to have a degree of certainty I'm doing this correctly.
Any help would be truly appreciated.
Help doc provides an example, but I'm not sure how to translate that to my setup.
http://help.directadmin.com/item.php?id=182
|?OPEN_BASEDIR_PATH=`HOME`/:/tmp:/usr/local/lib/php/|
I'm also wondering if I need to add anything else like follow symlinks.
The Plesk vhost.conf file contained:
Code:
<Directory /var/www/vhosts/slave.com/httpdocs >
#php_admin_value open_basedir "/tmp:/usr/share/pear:/var/www/vhosts/slave.com/httpdocs:/var/www/vhosts/master.com/httpdocs/sourcedir"
php_admin_value open_basedir none
Options +FollowSymLinks
</Directory>
Thank you for your help.