Created
March 20, 2014 20:54
-
-
Save kevsmith/9673589 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
%% SASL config | |
{sasl, [ | |
{sasl_error_logger, {file, "/var/log/galactus/sasl-error.log"}}, | |
{errlog_type, error}, | |
{error_logger_mf_dir, "/var/log/galactus/sasl"}, % Log directory | |
{error_logger_mf_maxbytes, 10485760}, % 10 MB max file size | |
{error_logger_mf_maxfiles, 5} % 5 files max | |
]}, | |
{lager, [ | |
{handlers, [{lager_console_backend, error}, | |
{lager_file_backend, [{file, "/var/log/galactus/galactus.log"}, {level, error}]}]}, | |
{crash_log, "/var/log/galactus/crash.log"}, | |
{async_threshold, 20}, | |
{async_threshold_window, 5}, | |
{error_logger_hwm, 5} | |
]}, | |
{galactus, [ | |
{release, true}, | |
{rest_port, "8888"}, | |
{adapter, "pgsql"}, | |
{db_host, "127.0.0.1"}, | |
{db_port, "5432"}, | |
{db_username, "planet"}, | |
{db_password, "secrete"}, | |
{db_database, "galactus"}, | |
{admin_token, "burritos4lyfe"}, | |
{cookie_domain, ".planet.com"}, | |
{secure_cookie, false}, | |
{cookie_path, "/"} | |
]} | |
]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment