Di dua browser yang saya gunakan menampilkan error yang berbeda, tetapi solusinya tetap 1 :)

Firefox

An error occurred during a connection to jaranguda.com. SSL received an unexpected New Session Ticket handshake message. Error code: SSL_ERROR_RX_UNEXPECTED_NEW_SESSION_TICKET

The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
Please contact the website owners to inform them of this problem.

SSL_ERROR_RX_UNEXPECTED_NEW_SESSION_TICKET Firefox

Chrome

This site can’t provide a secure connection

jaranguda.com sent an invalid response.
ERR_SSL_PROTOCOL_ERROR

This site can’t provide a secure connection Chrome

Solusi

Error tersebut diakibatkan oleh ssl_session_tickets di konfigurasi nginx, bila anda tidak memiliki ssl_session_tickets di konfigurasi nginx, waktunya untuk menambahkan baris tersebut di konfigurasi SSL nginx anda. Contoh block server nginx yang disisipi ssl_session_tickets off;

server {
    listen              443 ssl default_server;
    server_name         default;
    ssl_certificate     /etc/nginx/ssl/default.csr;
    ssl_certificate_key /etc/nginx/ssl/default.key;
    ssl_session_tickets off;
}

ssl_session_tickets off; paling ngga harus ada di default_server nginx, kalo masih belum cukup tambahkan di setiap block server yang anda gunakan.

Leave a comment

Your email address will not be published. Required fields are marked *