monitoring/README.md

34 lines
779 B
Markdown
Raw Normal View History

## Installation
2016-01-25 17:25:45 +01:00
```bash
./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
2016-01-25 17:25:45 +01:00
```bash
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
2016-01-25 17:25:45 +01:00
```nginx
...
2016-01-22 21:10:19 +01:00
location / {
include uwsgi_params;
uwsgi_pass 127.0.0.1:3031;
2016-02-17 02:47:13 +01:00
client_max_body_size 30M;
2016-01-22 21:10:19 +01:00
}
location /tiles {
include uwsgi_params;
uwsgi_pass 127.0.0.1:3032;
}
...
```