wagn
Passenger Apache Settings example
Submitted by Sam Rose on Tue, 11/10/2009 - 23:19<VirtualHost *:80> ServerName domain.com DocumentRoot /home/path/to/railsapp/public Options +FollowSymLinks +ExecCGI RailsEnv development </VirtualHost>
wagn action mailer settings
Submitted by Sam Rose on Tue, 10/27/2009 - 07:34The following goes into wagn.rb file (not environment.rb)
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "localhost",
:port => "25",
:domain => "mydomain.org",
}