Dica para teste de servidor https. Como o mesmo usa uma sessão criptografada, um simples "telnet server 80" não é possível. Eu lembrava de ter feito algo com o openssl, então , buscando na rede, encontrei a forma de fazer isso (thanks google!):

 


$ openssl s_client -connect www.gmail.com:443 -state -debug 
GET / HTTP/1.0 

Fonte: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html

 

Atualizado em: Mon Jan 28 16:45:37 BRST 2013

Também utilizo bastante a forma abaixo:

(echo -e "GET / HTTP/1.0\n\n"; sleep 1) | \
openssl s_client -connect www.google.com:443 -state

Dessa forma é possível verificar se a página é carregada corretamente ou não de uma forma mais rápida.

We use cookies

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.