Files
openfreemap/scripts/http_host/nginx_site.conf
Zsolt Ero 71d7d7fe95 work
2023-12-15 03:47:46 +01:00

18 lines
471 B
Plaintext

server {
server_name ofm tiles.openfreemaps.org;
# test with
# curl -H "Host: ofm" http://localhost/planet/20231208_091355/tiles/7/72/48.pbf
#access_log /data/ofm/logs/nginx-access.log access_json;
access_log off;
error_log /data/ofm/logs/nginx-error.log;
location /planet/20231208_091355 {
gzip off;
alias /data/ofm/runs/planet_20231208_091355/mnt_ro/extract;
autoindex on; # Enables listing of directory
}
}