forked from samuelclay/NewsBlur
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing empty recommendations for new servers. Also adding firewall in…
…formation and fixing up fabfile.
- Loading branch information
1 parent
fbfede6
commit b5ea1dc
Showing
8 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
127.0.0.1 localhost | ||
|
||
# 10.10 app01 | ||
10.5.1.100 db01 | ||
# 10.5.1.100 db01 | ||
# 10.10 task01 | ||
10.5.1.101 task02 | ||
# 10.5.1.101 task02 | ||
|
||
199.15.250.228 app01.newsblur.com | ||
199.15.253.162 db01.newsblur.com | ||
199.15.250.229 task01.newsblur.com | ||
199.15.250.230 task02.newsblur.com | ||
199.15.250.228 app01 app01.newsblur.com | ||
199.15.253.162 db01 db01.newsblur.com | ||
199.15.250.229 task01 task01.newsblur.com | ||
199.15.250.230 task02 task02.newsblur.com |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"newsblur" "" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
server { | ||
listen 199.15.250.228:80; | ||
location ~ / { | ||
proxy_pass http://173.230.136.120; | ||
} | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
kill -HUP `cat ~/newsblur/logs/gunicorn.pid` | ||
echo '----\n' | ||
tail -f /home/conesus/newsblur/logs/newsblur.log | ||
tail -f ~/newsblur/logs/newsblur.log |