I''m a newbie both with rails and configuring a server so I appreciate
any help available.
My rails app works until I add ssl - then the routing seems to break.
In ssl_error_log I have:
[Thu Aug 10 15:43:07 2006] [error] [client ###.##.##.## ] File does
not exist: /var/www/html/myapp/public/login
Notice  the login request is not routed appropriately.  The request
does not even show up in  /var/www/html/myapp/log/production.log
My setup
wbel
rails-1.1.4
apache2.0.52
mod-ssl
snippet from httpd.conf
<VirtualHost *:443>
  ServerName localhost.localdomain
  DocumentRoot /var/www/html/myapp/public/
  ErrorLog /var/www/html/myapp/log/apache.log
  SetEnv RAILS_ENV production
  RequestHeader set X_FORWARDED_PROTO ''https''
  <Directory /var/www/html/myapp/public/>
    Options ExecCGI FollowSymLinks
    AllowOverride all
    Order allow,deny
    Allow from all
  </Directory>
 </VirtualHost>
thanks for any help - marty