Last active
August 29, 2015 14:21
-
-
Save johncblandii/b50a4136dfb9db283794 to your computer and use it in GitHub Desktop.
AWS Opworks Custom JSON - Postgres, Nginx tweak, Sidekiq
This file contains 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
{ | |
"deploy": { | |
"short_app_name_here": { | |
"database": { | |
"adapter": "postgresql", | |
"type": "postgresql" | |
} | |
} | |
}, | |
"sidekiq": { | |
"short_app_name_here": { | |
"production": { | |
"process_count": 2, | |
"config": { | |
"logfile": "./log/sidekiq.log", | |
"concurrency": 5, | |
"verbose": false, | |
"queues": [ | |
"default" | |
] | |
} | |
} | |
} | |
}, | |
"nginx": { | |
"client_max_body_size": "20m" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment