Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. curl -sv -o /dev/null https://mikatatravel.com/ --resolve mikatatravel.com:443:104.238.222.150
  2.  
  3. * Added mikatatravel.com:443:104.238.222.150 to DNS cache
  4. * Hostname mikatatravel.com was found in DNS cache
  5. * Trying 104.238.222.150...
  6. * TCP_NODELAY set
  7. * Connected to mikatatravel.com (104.238.222.150) port 443 (#0)
  8. * ALPN, offering h2
  9. * ALPN, offering http/1.1
  10. * Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
  11. * successfully set certificate verify locations:
  12. * CAfile: /usr/local/etc/openssl/cert.pem
  13. CApath: /usr/local/etc/openssl/certs
  14. * TLSv1.2 (OUT), TLS header, Certificate Status (22):
  15. } [5 bytes data]
  16. * TLSv1.2 (OUT), TLS handshake, Client hello (1):
  17. } [512 bytes data]
  18. * error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
  19. * stopped the pause stream!
  20. * Closing connection 0
  21.  
  22. openssl s_client -connect 104.238.222.150:443 | openssl x509 -text -noout
  23.  
  24. 52457:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:/BuildRoot/Library/Caches/com.apple.xbs/Sources/OpenSSL098/OpenSSL098-64.50.6/src/ssl/s23_clnt.c:618: unable to load certificate
  25.  
  26. 52458:error:0906D06C:PEM routines:PEM_read_bio:no start line:/BuildRoot/Library/Caches/com.apple.xbs/Sources/OpenSSL098/OpenSSL098-64.50.6/src/crypto/pem/pem_lib.c:648:Expecting: TRUSTED CERTIFICATE
  27.  
  28. Listen 80
  29. <VirtualHost *:80>
  30. ServerName mikatatravel.com
  31. ServerAlias www.mikatatravel.com
  32. ServerAdmin -alreadyset-
  33. DocumentRoot -alreadyset-
  34.  
  35. SSLEngine off
  36. SSLCertificateFile -alreadyset-/mikata.pem
  37. SSLCertificateKeyFile -alreadyset-/mikata.key
  38.  
  39. <Directory />
  40. Options FollowSymLinks
  41. AllowOverride None
  42. Order allow,deny
  43. Allow from all
  44. Require all granted
  45. </Directory>
  46.  
  47. <Directory /home/emtetour/public_html>
  48. Options Indexes FollowSymLinks Multiviews
  49. AllowOverride None
  50. Order allow,deny
  51. Allow from all
  52. Require all granted
  53. </Directory>
  54.  
  55. ErrorLog -alreadyset-
  56. CustomLog -alreadyset-
  57.  
  58. </VirtualHost>
  59.  
  60. Listen 443
  61. <VirtualHost *:443>
  62. ServerName mikatatravel.com
  63. ServerAlias www.mikatatravel.com
  64. ServerAdmin -alreadyset-
  65. DocumentRoot -alreadyset-
  66.  
  67. SSLEngine on
  68. SSLCertificateFile -alreadyset-/mikata.pem
  69. SSLCertificateKeyFile -alreadyset-/mikata.key
  70.  
  71. <Directory />
  72. Options FollowSymLinks
  73. AllowOverride None
  74. Order allow,deny
  75. Allow from all
  76. Require all granted
  77. </Directory>
  78.  
  79. <Directory /home/emtetour/public_html>
  80. Options Indexes FollowSymLinks Multiviews
  81. AllowOverride None
  82. Order allow,deny
  83. Allow from all
  84. Require all granted
  85. </Directory>
  86.  
  87. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement