Advertisement
Guest User

Curl result

a guest
Mar 2nd, 2015
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. $ curl -v https://mydomain.com/dev/subfolder
  2. * Hostname was NOT found in DNS cache
  3. * Trying 42.42.42.42 ...
  4. * Connected to mydomain.com (42.42.42.42) port 443 (#0)
  5. * successfully set certificate verify locations:
  6. * CAfile: none
  7. CApath: /etc/ssl/certs
  8. * SSLv3, TLS handshake, Client hello (1):
  9. * SSLv3, TLS handshake, Server hello (2):
  10. * SSLv3, TLS handshake, CERT (11):
  11. * SSLv3, TLS handshake, Server key exchange (12):
  12. * SSLv3, TLS handshake, Server finished (14):
  13. * SSLv3, TLS handshake, Client key exchange (16):
  14. * SSLv3, TLS change cipher, Client hello (1):
  15. * SSLv3, TLS handshake, Finished (20):
  16. * SSLv3, TLS change cipher, Client hello (1):
  17. * SSLv3, TLS handshake, Finished (20):
  18. * SSL connection using ECDHE-RSA-AES256-GCM-SHA384
  19. * Server certificate:
  20. < cert info, all is well here >
  21. * SSL certificate verify ok.
  22. > GET /dev/log HTTP/1.1
  23. > User-Agent: curl/7.35.0
  24. > Host: mydomain.com
  25. > Accept: */*
  26. >
  27. < HTTP/1.1 301 Moved Permanently
  28. * Server nginx/1.4.6 (Ubuntu) is not blacklisted
  29. < Server: nginx/1.4.6 (Ubuntu)
  30. < Date: Mon, 02 Mar 2015 15:14:12 GMT
  31. < Content-Type: text/html
  32. < Content-Length: 193
  33. < Location: https://mydomain.com/dev/subfolder/
  34. < Connection: keep-alive
  35. <
  36. <html>
  37. <head><title>301 Moved Permanently</title></head>
  38. <body bgcolor="white">
  39. <center><h1>301 Moved Permanently</h1></center>
  40. <hr><center>nginx/1.4.6 (Ubuntu)</center>
  41. </body>
  42. </html>
  43. * Connection #0 to host mydomain.com left intact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement