SSL on multiple directories
- by Shredder
I have a website that is http, but has a port set up for https for a specific directory that is for the shopping cart. Now I'd like to use our SSL on a different directory in the same site as well. How can I go about configuring that?
I have tried looking into all of the config files as well as the docs and cannot figure it out.
I tried setting this in httpd.config as well
<VirtualHost 127.0.0.1:[ssl port]> #also tried *:[ssl port] and [actual IP]:[ssl port]
ServerAdmin [email protected]
DocumentRoot "C:/path/sslNeededDir"
ServerName www.example.com
</VirtualHost>
hoping that it would cause pages in this directory to use ssl port and become https, but that didn't do anything. Any help is greatly appreciated.
Update: This finally got migrated over. I'm still looking for a solid answer on this. If anyone could help me, it would be greatly appreciated.