Guest User

Untitled

a guest
Apr 13th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. ## database.yml
  2. main: &main
  3. adapter: mysql
  4. username: deploy
  5. password: <snip>
  6. socket: /var/lib/mysql/mysql.sock
  7. host: localhost
  8.  
  9. development:
  10. <<: *main
  11. database: mephisto_dev
  12.  
  13. test:
  14. adapter: sqlite3
  15. database: ":memory:"
  16.  
  17. production:
  18. <<: *main
  19. database: mephisto_elliottcable
  20.  
  21. ## mongrel_cluster.yml
  22. ---
  23. user: elliottcable
  24. group: deploy
  25. environment: production
  26. cwd: /srv/rails/mephisto/elliottcable_name
  27. address: localhost
  28. port: "55001"
  29. servers: 2
  30. pid_file: /srv/pid/mongrel/elliottcable_name.pid
  31. log_file: /srv/log/mongrel/elliottcable_name.log
Add Comment
Please, Sign In to add comment