Go to file
Dominik Heidler 0a57b6e5c7 Handle even larger requests 2016-02-17 02:47:13 +01:00
alfred-monitoring-proxy Handle even larger requests 2016-02-17 02:47:13 +01:00
contrib Let MongoClient be tz_aware 2016-02-15 18:51:40 +01:00
ffmap Let MongoClient be tz_aware 2016-02-15 18:51:40 +01:00
.gitignore add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00
README.md Handle even larger requests 2016-02-17 02:47:13 +01:00
install.sh auto reload map 2015-10-19 14:09:34 +02:00
setup.py add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00

README.md

Installation

./install.sh
systemctl enable uwsgi-ffmap
systemctl enable uwsgi-tiles-links_and_routers
systemctl enable uwsgi-tiles-hoods
systemctl start uwsgi-ffmap
systemctl start uwsgi-tiles-links_and_routers
systemctl start uwsgi-tiles-hoods
# Then apply NGINX Config

Debian Dependencies

apt-get install python python3 mongodb python3-requests python3-lxml python3-pip python3-flask python3-dateutil python3-numpy python3-scipy python-mapnik python3-pip uwsgi-plugin-python uwsgi-plugin-python3 nginx tilestache
pip3 install pymongo

NGINX Config

...
	location / {
		include uwsgi_params;
		uwsgi_pass 127.0.0.1:3031;
		client_max_body_size 30M;
	}

	location /tiles {
		include uwsgi_params;
		uwsgi_pass 127.0.0.1:3032;
	}
...