Created
November 3, 2013 16:40
-
-
Save yanniboi/7292130 to your computer and use it in GitHub Desktop.
Helpful scripts for blog automating.
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
#bible.conf | |
server { | |
listen 80; | |
server_name bible.six-gs.com ; | |
client_max_body_size 10M; | |
location / { | |
proxy_pass http://localhost:2777/; | |
proxy_set_header Host $host; | |
proxy_buffering off; | |
} | |
} | |
# ghost-bible | |
start on startup | |
script | |
cd /var/www/bible.six-gs.com/ghost | |
npm start --production | |
end script | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment