Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/al3xLvs/seedbox-manager
[UNMAINTAINED] Web app for manage your seedbox
https://github.com/al3xLvs/seedbox-manager
Last synced: 21 days ago
JSON representation
[UNMAINTAINED] Web app for manage your seedbox
- Host: GitHub
- URL: https://github.com/al3xLvs/seedbox-manager
- Owner: al3xLvs
- License: gpl-3.0
- Archived: true
- Created: 2014-04-08T21:37:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-29T10:32:06.000Z (over 7 years ago)
- Last Synced: 2024-11-18T09:48:55.620Z (24 days ago)
- Language: HTML
- Homepage: https://mondedie.fr/d/5394-Tuto-Installer-l-application-seedbox-manager-nginx
- Size: 1.45 MB
- Stars: 48
- Watchers: 11
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - Magicalex/seedbox-manager - [UNMAINTAINED] Web app for manage your seedbox (HTML)
README
# Description of seedbox-manager
[![StyleCI](https://styleci.io/repos/18575839/shield?branch=master)](https://styleci.io/repos/18575839)
seedbox-manager is web app for manage your seedbox.
* reboot rtorrent session
* custom links in navbar.
* statistic server (load average, uptime)
* download file config of filezilla and transdroid
* admin area
* logout for http basic authentication## Installation
*note : root privilege is required*
```bash
cd /var/www
git clone https://github.com/Magicalex/seedbox-manager.git
cd seedbox-manager
composer install
chown -R www-data: /var/www/seedbox-manager
cd source
chmod +x install.sh && ./install.sh
```## Configuration
*example : web server nginx*
```nginx
server {
listen 80 default_server;
server_name _;charset utf-8;
index index.php;access_log /var/log/nginx/seedbox-manager-access.log combined;
error_log /var/log/nginx/seedbox-manager-error.log error;auth_basic "seedbox-manager";
auth_basic_user_file "/etc/nginx/passwd/password";root /var/www;
location / {
try_files /seedbox-manager/$uri /seedbox-manager/index.php$is_args$args;
}location ^~ /assets {
alias /var/www/seedbox-manager/assets;
}location ~ \.php$ {
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
```In a uri like http://domain.tld/seedbox-manager
```nginx
server {
listen 80 default_server;
server_name _;charset utf-8;
index index.html index.php;auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/password";root /var/www;
location /seedbox-manager {
try_files /seedbox-manager/$uri /seedbox-manager/index.php$is_args$args;
}location ~ \.php$ {
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
```## First connection
Connect you to the interface with your rutorrent id.
This will automatically generate configuration files for the current user. `./seedbox-manager/conf/users/{utilisateur}/config.ini`To obtain the admin rights :
```bash
vi /var/www/seedbox-manager/conf/users/{utilisateur}/config.ini
```
and replace `admin = no` by `admin = yes`## developement
```bash
echo "127.0.0.1 sbm.dev" >> /etc/hosts
php -S sbm.dev:8080
```