Created
November 12, 2010 07:48
-
-
Save lajunta/673850 to your computer and use it in GitHub Desktop.
start and stop unicorn
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
#!/bin/sh | |
PATH=/var/lib/gems/1.9.1/bin:/usr/local/mongodb/bin:/usr/bin | |
cd /usr/local/railsites/zcms | |
unicorn_rails -p 80 -E production -D | |
exit 0 | |
#stop | |
#!/bin/bash | |
pkill unicorn_rails |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment