5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-09-19 14:59:35 +00:00
yggdrasil-map/README.md

29 lines
665 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)
2014-06-04 19:20:36 +00:00
## Sending your view of the network
```bash
wget https://raw.githubusercontent.com/Randati/fc00.org/master/scripts/sendGraph.py
nano sendGraph.py
chmod +x sendGraph.py
# Run this every 5-60 minutes
./sendGraph.py
```
2014-03-30 14:43:14 +00:00
## Web server
```bash
2014-03-30 14:50:35 +00:00
git clone git@github.com:Randati/fc00.org.git
2014-06-04 21:26:30 +00:00
sudo apt-get install python-flask python-flup python-mysqldb
2014-03-30 14:43:14 +00:00
cd fc00.org/web
cp web_config.example.cfg web_config.cfg
nano web_config.cfg
2014-03-30 14:43:14 +00:00
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
```