server {
    listen 80;
    listen [::]:80;

    server_name features.webmaster-dev.yandex.net;

    charset utf-8;
    source_charset utf-8;

    location /api/ {
        proxy_pass http://localhost:8080/;
    }

    location / {
        root /usr/lib/yandex/featurer/viewer/www;
    }
}