My domain is: haristocrate.fr
My web server is : nginx 1.18.0
The operating system my web server runs on is : ubuntu 20.04 Server
My hosting provider, if applicable, is: OVH
I can login to a root shell on my machine : yes
The version of my client is: certbot 1.11.0
hello, i tried to run a server but the browsers give me an error.
firefox: SSL_ERROR_RX_RECORD_TOO_LONG
chrome / edge (yes I did): ERR_SSL_PROTOCOL_ERROR
I have browsed the net but without success.
Here is the config file of my nginx:
*server {
listen 80;
server_name haristocrate.fr www.haristocrate.fr;
location / {
return 301 https://haristocrate.fr$request_uri;
}
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#rediriger la version https://WWW.$url en https://$url
server {
listen 443 default_server ssl;
server_name www.haristocrate.fr;
#la protocole ssl
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_certificate /etc/letsencrypt/live/haristocrate.fr/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/haristocrate.fr/privkey.pem;
#redireton en version sans WWW
location : {
return 301 https://haristocrate.fr$request_uri;
}
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#le bloc finale.
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name haristocrate.fr;
root /var/www/haristocrate/test;
index index.html;
error_log /var/log/nginx/haristocrate.fr.log notice;
access_log off;
#Locations
#~ interdire tout les fichier commencant par un point
location ~ /. { deny all; }
#SSL
#ssl on;
ssl_certificate /etc/letsencrypt/live/haristocrate.fr/cert.pem;
ssl_certificate_key /etc/letsencrypt/live/haristocrate.fr/privkey.pem;
ssl_stapling on;
ssl_stapling_verify on;
#ssl_trusted_certficate /etc/letsencrypt/live/haristocrate.fr/fullchain.pem;
#session Tikets
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_session_cache shared:SSL:100m;
ssl_session_ticket_key /etc/nginx/ssl/ticket.key;
ssl_dhparam /etc/nginx/ssl/dhparam4.pem;
#ECDH Curve
ssl_ecdh_curve secp384r1;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
}
*
I would like to clarify that before the server was running on apache and on another machine and the certificate worked very well.
now I would like to switch to Nginx and to another machine (the other is dead) so I generate another certificate, can this be a problem?
the new server has a different local address from the old one but the same public address.
can someone help me please?