Apache config is not distributed to the app servers when making
changes.
It's neccesary to route subdomains to a special catch-all script for
user/customer homepages...
Example Config:
<VirtualHost *:80>
ServerAlias www.{$host} {$host} {$server_alias}
ServerAdmin {$server_admin}
DocumentRoot {$document_root}
ServerName www.{$host}
CustomLog {$logs_dir}/http-{$host}-access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerName *.{$host}
DocumentRoot /var/www/special/path/for/subdomains
CustomLog {$logs_dir}/http-{$host}-access.log combined
</VirtualHost>
Tested cases:
- normal update and "save" in farm config
- rebundling the app instance by using "distribute to all" after
saving the changes in the farm config
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"scalr-discuss" 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/scalr-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---