|
Revision 195, 0.8 kB
(checked in by jweiss, 3 months ago)
|
|
add CAS auth support. Provided by Tim Shadel
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # Example Webistarno configuration |
|---|
| 3 | # |
|---|
| 4 | # copy this file to config/webistrano.rb and edit |
|---|
| 5 | # |
|---|
| 6 | WebistranoConfig = { |
|---|
| 7 | |
|---|
| 8 | # secret password for session HMAC |
|---|
| 9 | :session_secret => 'please choose a long random string, min. 30 characters', |
|---|
| 10 | |
|---|
| 11 | # Uncomment to use CAS authentication |
|---|
| 12 | # :authentication_method => :cas, |
|---|
| 13 | |
|---|
| 14 | # SMTP settings for outgoing email |
|---|
| 15 | :smtp_delivery_method => :sendmail, |
|---|
| 16 | |
|---|
| 17 | :smtp_settings => { |
|---|
| 18 | :address => "localhost", |
|---|
| 19 | :port => 25, |
|---|
| 20 | #:domain => "example.com", |
|---|
| 21 | #:user_name => "username", |
|---|
| 22 | #:password => "passwd", |
|---|
| 23 | #:authentication => :login |
|---|
| 24 | }, |
|---|
| 25 | |
|---|
| 26 | # Sender address for Webistrano emails |
|---|
| 27 | :webistrano_sender_address => "webistrano@example.com", |
|---|
| 28 | |
|---|
| 29 | # Sender and recipient for Webistrano exceptions |
|---|
| 30 | :exception_recipients => "team@example.com", |
|---|
| 31 | :exception_sender_address => "webistrano@example.com" |
|---|
| 32 | |
|---|
| 33 | } |
|---|