D
DirtyMonkey
Guest
I have successfully configured suPHP to work with vhosts.conf file provided by Plesk Power Tools by Graphix Software.
vhost.conf contains:
However as I understand it I have to also create vhost_ssl.conf file.
How should vhost_ssl.conf contain and is there anything else I have to do?
Web hosting setup: Use a single directory for housing SSL and non-SSL content
DM.
vhost.conf contains:
# PHP version detected 5
<IfModule mod_suphp.c>
<Directory "/var/www/vhosts/mydomain.com/httpdocs/">
php_admin_flag engine on
suPHP_Engine On
suPHP_ConfigPath "/var/www/vhosts/mydomain.com/httpdocs/"
AddHandler php5-script .php
AddHandler x-httpd-php .php5
suPHP_AddHandler php5-script .php
<Files php.ini>
order allow,deny
deny from all
</Files>
php_value open_basedir "/tmp/"
php_value upload_tmp_dir "/var/www/vhosts/mydomain.com/httpdocs/tmp/"
</Directory>
</IfModule>
However as I understand it I have to also create vhost_ssl.conf file.
How should vhost_ssl.conf contain and is there anything else I have to do?
Web hosting setup: Use a single directory for housing SSL and non-SSL content
DM.