在 Nginx linux 上設定tileserver-gl 時出錯

在 Nginx linux 上設定tileserver-gl 時出錯

嘗試在 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#running-behind-a-proxy-or-a-load-balancer

我究竟做錯了什麼?

相關內容