good day.

I have a React application on Red Hat server and I have a build/static folder on it (there is no index.html file inside, is it normal?). The task is to make nginx to serve static files on this server.

My config is in conf.d in /etc/nginx folder:

 $ cat my.conf 
server {
    listen 443 http2 ssl;
    listen [::]:443 http2 ssl;
    root /home/***-user/repo/****/frontend/build/static;
    server_name **.***.***.**;
    ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
    ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
    ssl_dhparam /etc/ssl/certs/dhparam.pem;
    location / {
                proxy_pass http://localhost:8080;
    }
}

I restarted nginx and how should I know that all static files are now served by nginx and are working properly?

2