wagn

Passenger Apache Settings example

<VirtualHost *:80>
 
  ServerName  domain.com
 
  DocumentRoot /home/path/to/railsapp/public
  Options +FollowSymLinks +ExecCGI
  RailsEnv development
 
</VirtualHost>

wagn action mailer settings

The 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",
}

Syndicate content (C01 _th3me_)