16 lines
		
	
	
		
			795 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			795 B
		
	
	
	
		
			Ruby
		
	
	
	
| # Be sure to restart your server when you modify this file.
 | |
| 
 | |
| # Your secret key for verifying cookie session data integrity.
 | |
| # If you change this key, all old sessions will become invalid!
 | |
| # Make sure the secret is at least 30 characters and all random, 
 | |
| # no regular words or you'll be exposed to dictionary attacks.
 | |
| ActionController::Base.session = {
 | |
|   :key         => '_r4_session',
 | |
|   :secret      => '1f062d6db3c797bea2da1ae0c82c0dd952833633fcfdda1e20baca0686bc2bee75aaa0db9ffe67e44655fad008fd1ddc5d670b051c7cf54ac6fa51c16dbe49fd'
 | |
| }
 | |
| 
 | |
| # Use the database for sessions instead of the cookie-based default,
 | |
| # which shouldn't be used to store highly confidential information
 | |
| # (create the session table with "rake db:sessions:create")
 | |
| # ActionController::Base.session_store = :active_record_store
 |