Go to file
Dominik Heidler 8665221b24 Style Readme
2016-01-22 21:10:19 +01:00
alfred-proxy fix alfred bug and use ssl 2015-11-13 15:11:19 +01:00
contrib update find_bad_mesh script 2015-11-27 15:54:47 +01:00
ffmap Rename to "FFF Monitoring", Add Index. 2016-01-22 21:08:27 +01:00
.gitignore add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00
install.sh auto reload map 2015-10-19 14:09:34 +02:00
README.md Style Readme 2016-01-22 21:10:19 +01:00
setup.py add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00

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 10M;
	}

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