Skip to content

[Support]: #15833

Closed Answered by Lubinrns
Lubinrns asked this question in General Support
Jan 5, 2025 · 14 comments · 11 replies
Discussion options

You must be logged in to vote

I managed to figure out that the problem was with my nginx configuration, so the correct configuration is :

# Configuration HTTP (sans redirection vers HTTPS)
server {
    listen 80;
    server_name  domain.com;

    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2;
    server_name domain.com;

    # Certificats TLS
    ssl_certificate /etc/nginx/certificates/cert.pem;
    ssl_certificate_key /etc/nginx/certificates/cert.key;

    # Sécurisation SSL
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers 'TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384';
    ssl_prefer_server_ciphers on;

    # Configuration du rev…

Replies: 14 comments 11 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
3 replies
@hawkeye217
Comment options

@Lubinrns
Comment options

@hawkeye217
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@hawkeye217
Comment options

Comment options

You must be logged in to vote
1 reply
@hawkeye217
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@Lubinrns
Comment options

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Jan 7, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Jan 7, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Jan 7, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Jan 7, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Jan 7, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
0 replies
Answer selected by NickM-27
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment