Created
February 15, 2012 19:26
-
-
Save psykidellic/1838326 to your computer and use it in GitHub Desktop.
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
Ritesh-Nadhanis-iMac:~ riteshn$ dig www.rangee.la | |
; <<>> DiG 9.6.0-APPLE-P2 <<>> www.rangee.la | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 55559 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;www.rangee.la. IN A | |
;; ANSWER SECTION: | |
www.rangee.la. 8496 IN A 184.169.133.80 | |
;; Query time: 1 msec | |
;; SERVER: 172.16.30.15#53(172.16.30.15) | |
;; WHEN: Wed Feb 15 11:25:29 2012 | |
;; MSG SIZE rcvd: 47 | |
Ritesh-Nadhanis-iMac:~ riteshn$ dig rangee.la | |
; <<>> DiG 9.6.0-APPLE-P2 <<>> rangee.la | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 20765 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;rangee.la. IN A | |
;; AUTHORITY SECTION: | |
rangee.la. 674 IN SOA a.dns.gandi.net. hostmaster.gandi.net. 1329290757 10800 3600 604800 10800 | |
;; Query time: 33 msec | |
;; SERVER: 172.16.30.15#53(172.16.30.15) | |
;; WHEN: Wed Feb 15 11:25:38 2012 | |
;; MSG SIZE rcvd: 89 | |
>>> Also my traceroute: | |
Ritesh-Nadhanis-iMac:~ riteshn$ traceroute www.rangee.la | |
traceroute to www.rangee.la (184.169.133.80), 64 hops max, 52 byte packets | |
1 172.16.30.254 (172.16.30.254) 2.214 ms 2.430 ms 1.582 ms | |
2 10.0.2.25 (10.0.2.25) 9.732 ms 11.761 ms 10.870 ms | |
3 x.158.14.204.web-pass.com (204.14.158.209) 7.370 ms 7.279 ms 10.148 ms | |
4 27.66.208.web-pass.com (208.66.27.217) 9.993 ms 9.352 ms 7.485 ms | |
5 31.66.208.web-pass.com (208.66.31.196) 8.882 ms 7.487 ms 9.393 ms | |
6 10.0.7.169 (10.0.7.169) 10.160 ms 10.578 ms 12.169 ms | |
7 xe-2-2-0.mpr4.sfo7.us.above.net (64.125.69.65) 10.767 ms 8.642 ms 8.547 ms | |
8 xe-1-2-0.er2.sjc2.us.above.net (64.125.26.62) 8.649 ms 9.231 ms 10.329 ms | |
9 xe-0-1-0.cr2.sjc2.us.above.net (64.125.28.22) 11.596 ms 9.708 ms 10.596 ms | |
10 xe-1-0-0.cr1.sjc2.us.above.net (64.125.30.137) 9.569 ms 9.538 ms 8.480 ms | |
11 xe-0-1-0.mpr1.pao1.us.above.net (64.125.31.65) 10.073 ms 10.465 ms 11.284 ms | |
12 paix01-sfo4.amazon.com (198.32.176.36) 9.980 ms 11.241 ms 13.653 ms | |
13 205.251.229.8 (205.251.229.8) 12.603 ms | |
205.251.229.14 (205.251.229.14) 12.494 ms | |
205.251.229.12 (205.251.229.12) 12.285 ms | |
14 72.21.222.19 (72.21.222.19) 15.631 ms | |
205.251.229.110 (205.251.229.110) 11.632 ms 16.436 ms | |
15 216.182.236.108 (216.182.236.108) 16.509 ms 24.416 ms | |
216.182.236.72 (216.182.236.72) 12.405 ms | |
16 * * * | |
17 216.182.236.79 (216.182.236.79) 13.080 ms | |
216.182.236.85 (216.182.236.85) 15.459 ms | |
216.182.236.83 (216.182.236.83) 15.915 ms | |
18 * * * | |
19 * * * | |
20 * * * | |
21 * * * | |
22 * * * | |
23 * * * | |
... WTF is with the ***** ? | |
>>>>>> | |
Relevant nginx section: | |
http { | |
passenger_root /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11; | |
passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby; | |
include mime.types; | |
default_type application/octet-stream; | |
#log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
# '$status $body_bytes_sent "$http_referer" ' | |
# '"$http_user_agent" "$http_x_forwarded_for"'; | |
#access_log logs/access.log main; | |
sendfile on; | |
#tcp_nopush on; | |
#keepalive_timeout 0; | |
keepalive_timeout 65; | |
#gzip on; | |
server { | |
listen 80; | |
server_name localhost; | |
root /home/ubuntu/rangeela/public; | |
rails_env development; | |
passenger_enabled on; | |
charset utf-8; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment