Skip to content

Instantly share code, notes, and snippets.

@matschaffer
Created June 19, 2015 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matschaffer/5fa6642d0f8cc17ac0c6 to your computer and use it in GitHub Desktop.
Save matschaffer/5fa6642d0f8cc17ac0c6 to your computer and use it in GitHub Desktop.
stellar.org test
~
❯ curl -v https://api.stellar.org
* Rebuilt URL to: https://api.stellar.org/
* Hostname was NOT found in DNS cache
* Trying 108.162.204.108...
* Connected to api.stellar.org (108.162.204.108) port 443 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
* Server certificate: *.stellar.org
* Server certificate: COMODO RSA Domain Validation Secure Server CA
* Server certificate: COMODO RSA Certification Authority
* Server certificate: AddTrust External CA Root
> GET / HTTP/1.1
> User-Agent: curl/7.37.1
> Host: api.stellar.org
> Accept: */*
>
< HTTP/1.1 404 Not Found
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< Date: Fri, 19 Jun 2015 03:36:22 GMT
< Content-Type: application/json; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=de609f4da8c00739637b6cdb23d1ce71f1434684982; expires=Sat, 18-Jun-16 03:36:22 GMT; path=/; domain=.stellar.org; HttpOnly
< Vary: Origin
< X-New-API: 1
< X-Powered-By: Express
< X-Ra: https://api.stellar.org/ra
< CF-RAY: 1f8c3072a12d044f-NRT
<
* Connection #0 to host api.stellar.org left intact
{"status":"fail","code":"not_found"}
~
❯ curl -v https://wallet.stellar.org
* Rebuilt URL to: https://wallet.stellar.org/
* Hostname was NOT found in DNS cache
* Trying 108.162.203.108...
* Connected to wallet.stellar.org (108.162.203.108) port 443 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
* Server certificate: *.stellar.org
* Server certificate: COMODO RSA Domain Validation Secure Server CA
* Server certificate: COMODO RSA Certification Authority
* Server certificate: AddTrust External CA Root
> GET / HTTP/1.1
> User-Agent: curl/7.37.1
> Host: wallet.stellar.org
> Accept: */*
>
< HTTP/1.1 404 Not Found
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< Date: Fri, 19 Jun 2015 03:36:29 GMT
< Content-Type: application/json; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=df476ce35321030b338f3ec2c08ea0c511434684989; expires=Sat, 18-Jun-16 03:36:29 GMT; path=/; domain=.stellar.org; HttpOnly
< Vary: Origin
< X-Powered-By: Express
< CF-RAY: 1f8c309e27250190-NRT
<
* Connection #0 to host wallet.stellar.org left intact
{"status":"fail","code":"not_found"}
~
❯ curl -v https://live.stellar.org:9001
* Rebuilt URL to: https://live.stellar.org:9001/
* Hostname was NOT found in DNS cache
* Trying 23.21.124.129...
* Connected to live.stellar.org (23.21.124.129) port 9001 (#0)
* TLS 1.2 connection using TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
* Server certificate: *.stellar.org
* Server certificate: COMODO RSA Domain Validation Secure Server CA
* Server certificate: COMODO RSA Certification Authority
* Server certificate: AddTrust External CA Root
> GET / HTTP/1.1
> User-Agent: curl/7.37.1
> Host: live.stellar.org:9001
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 157
* Server WebSocket++/0.2.1dev is not blacklisted
< Server: WebSocket++/0.2.1dev
<
* Connection #0 to host live.stellar.org left intact
<!DOCTYPE html><html><head><title>stellar Test</title></head><body><h1>stellar Test</h1><p>This page shows http(s) connectivity is working.</p></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment