nginx で tileserver-gl を実行しようとしています。
それに応じてデフォルトの設定ファイルを変更しました
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
しかし、nginxを再起動してlocalhost:80に移動すると、実行されていないようです----->
403 Forbidden
nginx/1.14.0 (Ubuntu)
tileserver-gl ドキュメントの指示に従おうとしていますが、ここには例があまりありません --->https://tileserver.readthedocs.io/en/latest/deployment.html#プロキシまたはロードバランサーの背後で実行
何が間違っているのでしょうか??