edc-web-ui 0.3.1

A Rust Web interface with patternfly-yew client for EDC
server {
    listen       80;
    server_name  localhost;

    location /connector {
        proxy_pass http://127.0.0.1:9193;
    }

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri $uri/ /index.html =404;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}