├── Dockerfile ├── Makefile ├── README.md ├── bin └── start ├── img ├── cakebox.png ├── greenssladdressbar.png ├── httplandingpage.png ├── instantstart.png ├── pibox.png ├── piboxmanagerhelp.png └── rutorrent.png ├── pibox.conf └── src ├── etc ├── nginx │ └── sites-available │ │ └── rutorrent.conf └── supervisor │ └── conf.d │ ├── base.conf │ ├── ftp.conf │ ├── torrent.conf │ └── web.conf ├── go.sh ├── root └── .rtorrent.rc └── var └── www ├── cakebox └── public │ └── ressources │ └── images │ └── bg-foodcupcake.jpg ├── cover.css ├── favicon.ico └── index.html /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/README.md -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/bin/start -------------------------------------------------------------------------------- /img/cakebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/cakebox.png -------------------------------------------------------------------------------- /img/greenssladdressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/greenssladdressbar.png -------------------------------------------------------------------------------- /img/httplandingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/httplandingpage.png -------------------------------------------------------------------------------- /img/instantstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/instantstart.png -------------------------------------------------------------------------------- /img/pibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/pibox.png -------------------------------------------------------------------------------- /img/piboxmanagerhelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/piboxmanagerhelp.png -------------------------------------------------------------------------------- /img/rutorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/img/rutorrent.png -------------------------------------------------------------------------------- /pibox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/pibox.conf -------------------------------------------------------------------------------- /src/etc/nginx/sites-available/rutorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/etc/nginx/sites-available/rutorrent.conf -------------------------------------------------------------------------------- /src/etc/supervisor/conf.d/base.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | -------------------------------------------------------------------------------- /src/etc/supervisor/conf.d/ftp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/etc/supervisor/conf.d/ftp.conf -------------------------------------------------------------------------------- /src/etc/supervisor/conf.d/torrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/etc/supervisor/conf.d/torrent.conf -------------------------------------------------------------------------------- /src/etc/supervisor/conf.d/web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/etc/supervisor/conf.d/web.conf -------------------------------------------------------------------------------- /src/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/go.sh -------------------------------------------------------------------------------- /src/root/.rtorrent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/root/.rtorrent.rc -------------------------------------------------------------------------------- /src/var/www/cakebox/public/ressources/images/bg-foodcupcake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/var/www/cakebox/public/ressources/images/bg-foodcupcake.jpg -------------------------------------------------------------------------------- /src/var/www/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/var/www/cover.css -------------------------------------------------------------------------------- /src/var/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/var/www/favicon.ico -------------------------------------------------------------------------------- /src/var/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedboxes/pibox/HEAD/src/var/www/index.html --------------------------------------------------------------------------------