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
|
|
|
|
2014-06-04 21:32:11 +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-11-01 05:49:42 +00:00
|
|
|
echo 'include "/path/to/fc00.org/web/lighttp.conf"' | sudo tee -a /etc/lighttpd/lighttpd.conf"
|
2014-03-30 14:43:14 +00:00
|
|
|
```
|