nginx.conf

Summary

Maintainability
Test Coverage
server {
    listen       80;
    server_name  localhost;

    root /srv/app;

    location /ui {
        try_files /index.html /index.html;
    }
}