Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Commit

Permalink
Fix bing photogrammetry
Browse files Browse the repository at this point in the history
  • Loading branch information
derekhe committed Oct 21, 2021
1 parent f417dca commit fd65d9c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions nginx/conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,29 @@ http {
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;

access_log logs/khstore-access.log;

location ~* /.*?tsom_cc_activation_masks.* {
return 404;
}

location ~* /.*?coverage_maps.* {
location ~* /.*?/coverage_maps/.* {
return 404;
}

location ~* /.*?texture_synthesis_online_map_high_res.* {
return 404;
}

location ~* /.*?color_corrected_images.* {
return 404;
}

location / {
proxy_set_header Host khstorelive.azureedge.net;
proxy_pass https://104.212.68.114;
proxy_pass https://104.212.68.33;
proxy_pass_request_headers on;
proxy_ssl_verify off;
access_log logs/khstore-access.log;
}
}

Expand All @@ -61,6 +62,8 @@ http {
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;

access_log logs/virtualearth-access.log;

location ~* /tiles/akh.*? {
proxy_pass http://localhost:8000;
proxy_pass_request_headers on;
Expand All @@ -70,10 +73,9 @@ http {

location / {
proxy_set_header Host kh.ssl.ak.tiles.virtualearth.net;
proxy_pass https://23.55.250.127;
proxy_pass https://184.25.168.127;
proxy_pass_request_headers on;
proxy_ssl_verify off;
access_log logs/virtualearth-access.log;
}
}
}

0 comments on commit fd65d9c

Please sign in to comment.