erro ao configurar o tileserver-gl no Nginx linux

erro ao configurar o tileserver-gl no Nginx linux

tentando executar o tileserver-gl no nginx.

Eu modifiquei o arquivo de configuração padrão de acordo

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

root /home/brian.tran/Documents/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;

 location /Documents/project/POC_vector_tiles/ {
   proxy_pass http://localhost/8084/;
   add_header Access-Control-Allow-Origin *;
}



sudo service nginx restart

mas quando eu reinicio o nginx e navego para localhost:80 ele não parece estar rodando ----->

403 Forbidden
nginx/1.14.0 (Ubuntu)

tentando seguir as instruções nos documentos do tileserver-gl, mas não há muitos exemplos aqui --->https://tileserver.readthedocs.io/en/latest/deployment.html#running-behind-a-proxy-or-a-load-balancer

O que estou fazendo de errado??

informação relacionada