Setting up libretime ssl with NGINX

Hello community I am having an issue getting SSL to work on my libertime environment I tried using NGINX configuration specified in libertime docs but they don’t seem to work on my side here is my configuration

server {
    listen 80;
    server_name radio.example.com;
    location / {
        rewrite ^ https://$server_name$request_uri? permanent;
    }
}

server {
    listen 443 ssl;
    server_name radio.example.com;

    ssl_certificate /etc/letsencrypt/live/radio.example.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/radio.example.com/privkey.pem;

    location / {
        proxy_set_header Host              $host;
        proxy_set_header X-Real-IP         $remote_addr;
        proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Host  $host;
        proxy_set_header X-Forwarded-Port  $server_port;

        proxy_pass http://localhost:8080/;
    }
}

If you have an NGINX conf that works I would love to get help from you

Hey, could you please provide more information, such as logs or system information. Otherwise we cannot be of any help.

here are the status of the diagnosis