31 lines
725 B
Plaintext
31 lines
725 B
Plaintext
# Add configuration values here, as shown below.
|
|
|
|
defaults: &defaults
|
|
mysql_host: "localhost"
|
|
mysql_usr: "user"
|
|
mysql_pwd: "password"
|
|
full_app_url: "localhost:3000"
|
|
oauth_provider: Provider-HumanName
|
|
oauth_path: provider-url
|
|
client_key: client-id
|
|
secret_key: client-secret
|
|
callback_url: local-callback
|
|
htpasswd: "/path/to/vsftpd/password.file"
|
|
ftpusers: "/path/to/vsftpd/users/configs"
|
|
ftproot: "/path/to/root/ftp/prefix/"
|
|
ftpaccount: vsftpd
|
|
wwwroot: "/path/to/ftp/www"
|
|
|
|
development:
|
|
<<: *defaults
|
|
|
|
test:
|
|
<<: *defaults
|
|
|
|
production:
|
|
<<: *defaults
|
|
mysql_usr: "user"
|
|
mysql_pwd: "password!"
|
|
secret_key_base: "super-long-secret-key-base"
|
|
full_app_url: "production.domain.com/sub-folder/"
|