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
| upstream unicorn { | |
| server unix:/tmp/unicorn.app_name.sock fail_timeout=0; | |
| } | |
| server { | |
| server_name domain.com www.domain.com; | |
| listen 80 default deferred; | |
| root /opt/apps/app_path/public; |
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
| # SQLite version 3.x | |
| # gem install sqlite3 | |
| # | |
| # Ensure the SQLite 3 gem is defined in your Gemfile | |
| # gem 'sqlite3' | |
| # | |
| default: &default | |
| adapter: sqlite3 | |
| pool: 5 | |
| timeout: 5000 |
NewerOlder