intentando ejecutar Tileserver-gl en nginx.
Modifiqué el archivo de configuración predeterminado en consecuencia
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
pero cuando reinicio nginx y navego a localhost:80 no parece ejecutarse ----->
403 Forbidden
nginx/1.14.0 (Ubuntu)
intentando seguir las instrucciones de los documentos detileserver-gl pero no hay muchos ejemplos aquí --->https://tileserver.readthedocs.io/en/latest/deployment.html#running-behind-a-proxy-or-a-load-balancer
¿¿Qué estoy haciendo mal??