Go to file
Dominik Heidler d1c27b709f increase max request body size to 10MB
currently all router facts are sent uncompressed in one push
and now we seem to have exceeded the default of 1-2MB
2015-11-27 15:59:58 +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 new hood: nbgland 2015-11-27 15:59:09 +01:00
.gitignore add alfred support and dynamic map creation 2015-10-10 17:42:44 +02:00
README.md increase max request body size to 10MB 2015-11-27 15:59:58 +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 10M;
        }

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