Example of NGINX Configuration

Use the sample code provided here to configure your web server to route all requests to the index page.

server {
    listen       80;
    server_name  wmt.example.com;
 
    location / {
        root   /usr/share/nginx/html;
        try_files $uri /index.html;
    }
}