Skip to content

Instantly share code, notes, and snippets.

@svoynow
Created June 19, 2019 00:15
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 svoynow/5d619b34d5b09312de3bb6af04f67dac to your computer and use it in GitHub Desktop.
Save svoynow/5d619b34d5b09312de3bb6af04f67dac to your computer and use it in GitHub Desktop.
➜ curl -v https://dev.walmart.com
* Rebuilt URL to: https://dev.walmart.com/
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to dev.walmart.com (127.0.0.1) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/ssl/cert.pem
CApath: none
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to dev.walmart.com:443
* Closing connection 0
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to dev.walmart.com:443
walmart on  buildpacks [!?] is 📦 v0.1.0 via ⬢ v8.11.3 at ☸️ docker-for-desktop
➜ curl -v http://dev.walmart.com
* Rebuilt URL to: http://dev.walmart.com/
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to dev.walmart.com (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> Host: dev.walmart.com
> User-Agent: curl/7.54.0
> Accept: */*
>
* Empty reply from server
* Connection #0 to host dev.walmart.com left intact
curl: (52) Empty reply from server
walmart on  buildpacks [!?] is 📦 v0.1.0 via ⬢ v8.11.3 at ☸️ docker-for-desktop
➜ curl -v http://localhost
* Rebuilt URL to: http://localhost/
* Trying ::1...
* TCP_NODELAY set
* Connection failed
* connect to ::1 port 80 failed: Connection refused
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> Host: localhost
> User-Agent: curl/7.54.0
> Accept: */*
>
* Empty reply from server
* Connection #0 to host localhost left intact
curl: (52) Empty reply from server
walmart on  buildpacks [!?] is 📦 v0.1.0 via ⬢ v8.11.3 at ☸️ docker-for-desktop
➜ curl -v https://localhost
* Rebuilt URL to: https://localhost/
* Trying ::1...
* TCP_NODELAY set
* Connection failed
* connect to ::1 port 443 failed: Connection refused
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/ssl/cert.pem
CApath: none
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to localhost:443
* Closing connection 0
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to localhost:443
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment