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
내가 도대체 뭘 잘못하고있는 겁니까??