comparison config/config_local_env.rb.example @ 437:d31fe32da7a0

Finish updating to rails 5
author nanaya <me@myconan.net>
date Sat, 02 Jul 2016 17:04:25 +0900
parents config/local_config.rb.example@56382cb104dd
children
comparison
equal deleted inserted replaced
436:72557a5310d9 437:d31fe32da7a0
1 # Required: generate with `bundle exec secret`
2 #
3 # $cfg[:secret_key] = "FILL_IN_HERE"
4 # Or set environment variable ZP_SECRET_KEY
5
6 # Set to false if you want to use different web server (e.g. passenger)
7 # Default is set to use standalone server:
8 # - MRI Ruby: Unicorn
9 # - JRuby and Rubinius: Puma
10 # $cfg[:standalone] = true
11
12 # Set to true to use newrelic monitoring.
13 # Don't forget to put your newrelic.yml in config directory.
14 # Default: false
15 # $cfg[:newrelic] = false
16 # Or set environment variable ZP_NEWRELIC to 1
17 #
18
19 # If you want to deploy with just environment variable, also set ZP_DATABASE_URL or DATABASE_URL.