尝试在 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
我究竟做错了什么??