├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── 7zignore ├── LICENSE ├── README.EN.md ├── README.md ├── certs ├── cert.crt ├── cert.pem ├── generatekey.bat └── key.pem ├── config-prod.ini ├── config.ini ├── doc ├── 1628320893.jpg ├── auto-gen-map.png ├── chengdu.png ├── compare-1.jpg ├── compare-2.jpg ├── compare-3.png ├── hongkong.jpg ├── lake-2.jpg ├── lake-3.jpg ├── lake.jpg ├── mitm-2.png ├── mitm.png ├── mm_reward_qrcode_1628320842310.png ├── principle.drawio.png ├── proxifier-1.png ├── proxifier-2.png ├── proxifier-3.png └── xian.png ├── nginx ├── LICENSE ├── conf │ ├── cert.pem │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── key.pem │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── scgi_params │ ├── uwsgi_params │ └── win-utf ├── contrib │ ├── README │ ├── geo2nginx.pl │ ├── unicode2nginx │ │ ├── koi-utf │ │ ├── unicode-to-nginx.pl │ │ └── win-utf │ └── vim │ │ ├── ftdetect │ │ └── nginx.vim │ │ ├── ftplugin │ │ └── nginx.vim │ │ ├── indent │ │ └── nginx.vim │ │ └── syntax │ │ └── nginx.vim ├── docs │ ├── GNUmakefile │ ├── dtd │ │ ├── change_log_conf.dtd │ │ └── changes.dtd │ ├── html │ │ ├── 50x.html │ │ └── index.html │ ├── man │ │ └── nginx.8 │ ├── text │ │ ├── LICENSE │ │ └── README │ ├── xml │ │ ├── change_log_conf.xml │ │ └── nginx │ │ │ └── changes.xml │ ├── xsls │ │ └── changes.xsls │ └── xslt │ │ └── changes.xslt ├── logs │ └── .gitkeep ├── nginx.exe └── temp │ └── .gitkeep ├── requirements.txt ├── run.bat └── src ├── app.py ├── runner.py ├── server.py └── settings.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/.gitignore -------------------------------------------------------------------------------- /7zignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/7zignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/LICENSE -------------------------------------------------------------------------------- /README.EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/README.EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/README.md -------------------------------------------------------------------------------- /certs/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/certs/cert.crt -------------------------------------------------------------------------------- /certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/certs/cert.pem -------------------------------------------------------------------------------- /certs/generatekey.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/certs/generatekey.bat -------------------------------------------------------------------------------- /certs/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/certs/key.pem -------------------------------------------------------------------------------- /config-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/config-prod.ini -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/config.ini -------------------------------------------------------------------------------- /doc/1628320893.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/1628320893.jpg -------------------------------------------------------------------------------- /doc/auto-gen-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/auto-gen-map.png -------------------------------------------------------------------------------- /doc/chengdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/chengdu.png -------------------------------------------------------------------------------- /doc/compare-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/compare-1.jpg -------------------------------------------------------------------------------- /doc/compare-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/compare-2.jpg -------------------------------------------------------------------------------- /doc/compare-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/compare-3.png -------------------------------------------------------------------------------- /doc/hongkong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/hongkong.jpg -------------------------------------------------------------------------------- /doc/lake-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/lake-2.jpg -------------------------------------------------------------------------------- /doc/lake-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/lake-3.jpg -------------------------------------------------------------------------------- /doc/lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/lake.jpg -------------------------------------------------------------------------------- /doc/mitm-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/mitm-2.png -------------------------------------------------------------------------------- /doc/mitm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/mitm.png -------------------------------------------------------------------------------- /doc/mm_reward_qrcode_1628320842310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/mm_reward_qrcode_1628320842310.png -------------------------------------------------------------------------------- /doc/principle.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/principle.drawio.png -------------------------------------------------------------------------------- /doc/proxifier-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/proxifier-1.png -------------------------------------------------------------------------------- /doc/proxifier-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/proxifier-2.png -------------------------------------------------------------------------------- /doc/proxifier-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/proxifier-3.png -------------------------------------------------------------------------------- /doc/xian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/doc/xian.png -------------------------------------------------------------------------------- /nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/LICENSE -------------------------------------------------------------------------------- /nginx/conf/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/cert.pem -------------------------------------------------------------------------------- /nginx/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/fastcgi.conf -------------------------------------------------------------------------------- /nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /nginx/conf/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/key.pem -------------------------------------------------------------------------------- /nginx/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/koi-utf -------------------------------------------------------------------------------- /nginx/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/koi-win -------------------------------------------------------------------------------- /nginx/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/mime.types -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /nginx/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/scgi_params -------------------------------------------------------------------------------- /nginx/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/uwsgi_params -------------------------------------------------------------------------------- /nginx/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/conf/win-utf -------------------------------------------------------------------------------- /nginx/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/README -------------------------------------------------------------------------------- /nginx/contrib/geo2nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/geo2nginx.pl -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/unicode2nginx/koi-utf -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/unicode-to-nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/unicode2nginx/unicode-to-nginx.pl -------------------------------------------------------------------------------- /nginx/contrib/unicode2nginx/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/unicode2nginx/win-utf -------------------------------------------------------------------------------- /nginx/contrib/vim/ftdetect/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/vim/ftdetect/nginx.vim -------------------------------------------------------------------------------- /nginx/contrib/vim/ftplugin/nginx.vim: -------------------------------------------------------------------------------- 1 | setlocal commentstring=#\ %s 2 | -------------------------------------------------------------------------------- /nginx/contrib/vim/indent/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/vim/indent/nginx.vim -------------------------------------------------------------------------------- /nginx/contrib/vim/syntax/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/contrib/vim/syntax/nginx.vim -------------------------------------------------------------------------------- /nginx/docs/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/GNUmakefile -------------------------------------------------------------------------------- /nginx/docs/dtd/change_log_conf.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/dtd/change_log_conf.dtd -------------------------------------------------------------------------------- /nginx/docs/dtd/changes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/dtd/changes.dtd -------------------------------------------------------------------------------- /nginx/docs/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/html/50x.html -------------------------------------------------------------------------------- /nginx/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/html/index.html -------------------------------------------------------------------------------- /nginx/docs/man/nginx.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/man/nginx.8 -------------------------------------------------------------------------------- /nginx/docs/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/text/LICENSE -------------------------------------------------------------------------------- /nginx/docs/text/README: -------------------------------------------------------------------------------- 1 | 2 | Documentation is available at http://nginx.org 3 | 4 | -------------------------------------------------------------------------------- /nginx/docs/xml/change_log_conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/xml/change_log_conf.xml -------------------------------------------------------------------------------- /nginx/docs/xml/nginx/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/xml/nginx/changes.xml -------------------------------------------------------------------------------- /nginx/docs/xsls/changes.xsls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/xsls/changes.xsls -------------------------------------------------------------------------------- /nginx/docs/xslt/changes.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/docs/xslt/changes.xslt -------------------------------------------------------------------------------- /nginx/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/nginx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/nginx/nginx.exe -------------------------------------------------------------------------------- /nginx/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/run.bat -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/src/app.py -------------------------------------------------------------------------------- /src/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/src/runner.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/src/server.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekhe/msfs2020-google-map/HEAD/src/settings.py --------------------------------------------------------------------------------