1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| server{ listen 1123; location /gdlk { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization'; if ($request_method = 'OPTIONS') { return 204; } rewrite ^.+apis/?(.*)$ /$1 break; proxy_pass http://tm.amap.com/trafficengine/mapabc/traffictile; } location /txlk { rewrite ^.+apis/?(.*)$ /$1 break; proxy_pass https://rtt2b.map.qq.com/rtt/; } location /bdlk { rewrite ^.+apis/?(.*)$ /$1 break; proxy_pass http://its.map.baidu.com:8002/traffic/TrafficTileService; } }
|