5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-11-12 23:20:26 +00:00
yggdrasil-map/README.md

30 lines
656 B
Markdown
Raw Normal View History

2014-03-30 14:43:14 +00:00
# fc00.org
Source code for http://fc00.org (http://www.fc00.org for clearnet)
## Web server
```bash
2014-03-30 14:50:35 +00:00
git clone git@github.com:Randati/fc00.org.git
2014-03-30 14:43:14 +00:00
sudo apt-get install python-flask python-flup
cd web
cp lighttp.example.conf lighttp.conf
nano lighttp.conf
2014-03-30 14:50:35 +00:00
sudo sh -c "echo 'include \"/path/to/fc00.org/web/lighttp.conf\"' >> /etc/lighttpd/lighttpd.conf"
2014-03-30 14:43:14 +00:00
```
## Mapper
```bash
2014-03-30 14:50:35 +00:00
git clone git@github.com:Randati/fc00.org.git
2014-03-30 14:43:14 +00:00
sudo apt-get install python-pygraphviz python-httplib2
cd mapper
cp conf_sh.example.py conf_sh.py
nano conf_sh.py
./start-mappers.sh
2014-03-30 14:50:35 +00:00
./makeGraph.py && scp graph.json user@www.fc00.org:/path/to/fc00.org/web/static/graph.json
2014-03-30 14:43:14 +00:00
```