Using the Alias in Apache, as defined in the first message is the way
to go, but the .htaccess files need to have the RewriteBase set to the
alias being used.
Apache Virtual Host--
<VirtualHost *:443>
Blah, Blah, Blah
Alias /myalias path-to-cake-app-webroot
<Directory path-to-cake-app-webroot>
Cake Directives
</Directory>
path-to-cake/
app/
.htaccess --
RewriteBase /myalias # As defined in Apache Virtual Host
path-to-cake/
app/
webroot/
.htaccess --
RewriteBase /myalias # As defined in Apache Virtual Host
This allows me to deploy multiple apps while sharing the same SSL
cert.
FWIW, this was described in the advanced installation steps. Sorry, I
should have seen that on one of my frequent stops by the cookbook.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---