KingSky
New Pleskian
Method for sharing 1 SSL certificates among clients [possible MOD]
Hi,
Sorry to mark this as urgent, but it really is. I have a client who is going to need to have their shopping cart up by next week.
I have implemented the following in my httpd.conf file:
so that I can access my domains like so:
http://myipaddress/~ftpusername
This works great... but I need to do it for SSL too so that these requests are redirected to the httpsdocs folder.
I read a bunch of forums/webpages and tried messing with this section:
But I'm really not sure what to change to do what I want, everything I tried prevented apache from restarting.
Please help!
Thanks SOO much!
-Kevin
Hi,
Sorry to mark this as urgent, but it really is. I have a client who is going to need to have their shopping cart up by next week.
I have implemented the following in my httpd.conf file:
Code:
<VirtualHost my.ip.add.ress>
ServerName default
UseCanonicalName Off
DocumentRoot /home/httpd/vhosts/default/htdocs
ScriptAlias /cgi-bin/ "/home/httpd/vhosts/default/cgi-bin/"
<Directory "/home/httpd/vhosts">
DirectoryIndex index.php index.html index.htm default.html default.htm
<IfModule mod_php4.c>
php_admin_flag engine on
</IfModule>
</Directory>
<IfModule mod_userdir.c>
UserDir enable *
UserDir httpdocs
</IfModule>
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory "/home/httpd/vhosts/default/cgi-bin/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
so that I can access my domains like so:
http://myipaddress/~ftpusername
This works great... but I need to do it for SSL too so that these requests are redirected to the httpsdocs folder.
I read a bunch of forums/webpages and tried messing with this section:
Code:
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
But I'm really not sure what to change to do what I want, everything I tried prevented apache from restarting.
Please help!
Thanks SOO much!
-Kevin