[Catalyst] Instruction for SSL configuration for Apache and
fastcgi
Andrew Rodland
andrew at cleverdomain.org
Fri Aug 6 08:39:01 GMT 2010
On Thursday, August 05, 2010 04:26:52 pm Kutbuddin Doctor wrote:
> Can someone provide apache config scripts for this situation? Do I need
> Port 443 for the FastCgiServer command in Apache? Will these 2 VH's use
> separate Session FastMmap files? Log files?
No, No, and only if you ask for it.
Really there's nothing to it, just do it. Write one virtualhost with
<VirtualHost *:80>
ServerName foo
[ ... other crap ...]
Alias / /path/to/fcgi/
</VirtualHost>
and one with
<VirtualHost *:443>
ServerName foo
SSLEngine On
[... other crap ...]
Alias / /path/to/fcgi/
</VirtualHost>
More information about the Catalyst
mailing list