Go to file
Dominik Heidler e93c170424 update find_bad_mesh script 2015-11-27 15:54:47 +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 show netif on multiple links to same neighbour 2015-11-27 15:49:02 +01:00
.gitignore add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00
README.md use tilestache insted of tilelite for rendering 2015-10-16 17:02:45 +02: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;
        }

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