ERR_SSL_VERSION_OR_CIPHER_MISMATCH
ERR_SSL_VERSION_OR_CIPHER_MISMATCH
Ini dikarenakan cipher SSLv3 sudah tidak di support
Cari nginx block server
Biasanya ada di /etc/nginx/sites-enabled/
edit dengan nano
sudo nano [nama file server block]
hapus code berikut
untuk menghapus 1 baris pada nano ketik ctrl + k
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers on;
paste
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA;
simpan nano
untuk save ketik ctrl + o enter
untuk exit ketik ctrl + xsu
pastikan nginx block yang diedit tidak error
sudo nginx -t
kalau ok akan terlihat pesan seperti ini di terminal
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
restart nginx service
sudo systemctl restart nginx
Test di browser
Leave a Reply