Grafana - ssl - nginx - does not work

Hello, I have an incredible problem here in my nginx, working with ssl,
thanks help
my route is as follows.

grafana mydomain com → firewall (NAT P.80) → NGINX SERVER (10. 10. 10. 131) → GRAFANA-SERVER 10.10.10.5 (NGINX)
This route is ok, working with http:// grafana mydomain com or http: // 10.10.10.5:3000 , but when I add an SSL certificate, it gets complicated.

When stopping https:// grafana mydomain com or https: // 10.10 .10. 5: 3000 it gives an error:

I think I’m missing something, when you remove the standard Grafana from Apache and go to Nginx and SSL, would I have to tell you where the Grafana index is? something like?

----
Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.
------


NGINX SERVER (10. 10 .10. 131) config

server {
                listen    80;

                server_name   grafana mydomain com ;
                location / {
                                proxy_set_header  Host $host;
                                proxy_set_header  X-Real-IP $remote_addr;
                                proxy_set_header  X-Forwarded-Proto https;
                                proxy_set_header  X-Forwarded-For $remote_addr;
                                proxy_set_header  X-Forwarded-Host $remote_addr;

                proxy_pass http: // 10.10.10.5:3000;
                                        }
                }
server {
                listen    443;

                server_name   grafana mydomain com ;
                location / {
                                proxy_set_header  Host $host;
                                proxy_set_header  X-Real-IP $remote_addr;
                                proxy_set_header  X-Forwarded-Proto https;
                                proxy_set_header  X-Forwarded-For $remote_addr;
                                proxy_set_header  X-Forwarded-Host $remote_addr;

                proxy_pass http: // 10 .10. 10.5: 3000;
                                        }
                }

GRAFAMA NGINX  (10. 10. 10 .5) config

server {
    listen 80;
    server_name  grafana mydomain com ;

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

server {
    listen 443 ssl http2;
    server_name  grafana mydomain com ;

    ssl_certificate /etc/letsencrypt/live/ grafana mydomain com /fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/ grafana mydomain com /privkey.pem;

    # Configurações SSL ...

    location / {
        proxy_pass proxy_pass http: // 10.10.10.5:3000;
        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;
    }
}

tail -f /var/log/nginx/error.log
2024/05/29 14:05:22 [error] 1213395#1213395: *27634 "/usr/share/nginx/html/zabbix/index.html" is not found (2: No such file or directory), client: 10.11.11.6, server:  grafana mydomain com , request: "GET /zabbix/ HTTP/1.1", host: "10.10.10.5"
2024/05/29 14:05:22 [error] 1213395#1213395: *27634 open() "/usr/share/nginx/html/favicon.ico" failed (2: No such file or directory), client: 10.11.11.6, server:  grafana mydomain com , request: "GET /favicon.ico HTTP/1.1", host: "10.10.10.5", referrer: "https://10.10.10.5/zabbix/"
2024/05/29 14:53:11 [error] 1240284#1240284: *1 open() "/usr/share/nginx/html/favicon.ico" failed (2: No such file or directory), client: 172.212.xxx.xxx, server:  grafana mydomain com , request: "GET /favicon.ico HTTP/1.1", host: " grafana mydomain com ", referrer: "https:// grafana mydomain com /"
2024/05/29 15:18:08 [error] 1240510#1240510: *162 open() "/usr/share/nginx/html/owa/auth/logon.aspx" failed (2: No such file or directory), client: 172.212.xxx.xxx, server:  grafana mydomain com , request: "GET /owa/auth/logon.aspx HTTP/1.1", host: "myrealIP"
2024/05/29 16:02:21 [error] 1241370#1241370: *1 open() "/usr/share/nginx/html/login" failed (2: No such file or directory), client: 200.225.xxx.xxx, server:  grafana mydomain com , request: "GET /login HTTP/1.1", host: " grafana mydomain com "