- Modifié
Arck0s wrote:@fana: la solution est viable si tu utilise FF, perso j'ai safari et ça n'existe pas.
@ReaperBe: bizarre. Question con, tu as bien installé les plugins divx sur ton ordi ?
biensur ^^ j'ai Klite Codec Full
Arck0s wrote:@fana: la solution est viable si tu utilise FF, perso j'ai safari et ça n'existe pas.
@ReaperBe: bizarre. Question con, tu as bien installé les plugins divx sur ton ordi ?
Arck0s wrote:Je parlais du pack officiel dispo sur le site divx.com
Salut,lokiii wrote:Hello,
Y'a un nouveau tuto dans la section tuto pour la nouvelle version de cakebox
Hors dans le fichier cakebox.conf tu as mis:lokkiii wrote:Attention²: Tuto réalisé pour php-fpm version 5
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
Pareil pour le redémarrage:
service nginx restart && service php7.0-fpm restart
Il faudrait que tu change ton warning PHP 5.6.24-1~dotdeb+7.1 (cli) (built: Jul 21 2016 23:11:42)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
Voici mon fichier /var/www/cakebox/config/toto.php
<?php
/*
NOTE
if you don't want to use default, use this template
for security reason, we strongly recommand to set upload, create folder
can rename a file, delete a file, archive directory and the rss feed to false
/*
General configuration of Cakebox
*/
$app["cakebox.root"] = "/home/toto/torrents";
$app["cakebox.access"] = "/acess/toto";
$app["cakebox.language"] = "fr"; //Language of Cakebox. Could be : fr, en
$app["cakebox.host"] = ""; //domain where cakebox is hosted
/*
Directory settings
*/
$app["directory.ignoreDotFiles"] = true;
$app["directory.ignore"] = "//"; // Regex for files exclusion. For exemple : "/(\.nfo|\.test)$/"
/*
Web player settings
*/
$app["player.default_type"] = "html5"; // html5 or divx or vlc
$app["player.auto_play"] = "false";
/*
User rights
*/
$app["rights.canPlayMedia"] = true;
$app["rights.canDownloadFile"] = true;
$app["rights.canArchiveDirectory"] = false;
$app["rights.canDelete"] = false;
$app["rights.canCreate"] = true;
$app["rights.canRename"] = true;
$app["rights.canUpload"] = true;
/*
User credentials
*/
$app["user.name"] = "";
$app["user.password"] = "";
/*
Betaseries account
NB: Ask API key here http://www.betaseries.com/api/
*/
$app["bs.login"] = "";
$app["bs.passwd"] = "";
$app["bs.apikey"] = "";
Mon fichier /etc/nginx/sites-enabled/cakebox.conf
sserver {
listen 81;
server_name _;
# only the proxy
allow 127.0.0.1;
deny all;
root /var/www/cakebox/public/;
access_log /var/log/nginx/cakebox-access.log;
error_log /var/log/nginx/cakebox-error.log;
#site root is redirected to the app boot script
location = / {
try_files @site @site;
}
#all other locations try other files first and go to our front controller if none of them exists
location / {
try_files $uri $uri/ @site;
}
#return 404 for all php files as we do have a front controller
location ~ \.php$ {
return 404;
}
#main configuration
location @site {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
## use debug instead of production to get more log
fastcgi_param APPLICATION_ENV production;
## fastcgi_param HTTPS on;
}
}
et mon fichier rutorrent.conf
## config utilisateurs ##
location /toto {
include scgi_params;
scgi_pass 127.0.0.1:5001; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_toto";
}
location /cakebox/ {
rewrite ^/cakebox(/.*)$ $1 break;
proxy_pass http://127.0.0.1:81;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
}
location /access/toto { # meme_chemin_que_$app["cakebox.access"]
alias /home/toto/torrents ; # meme_chemin_que_$app["cakebox.root"]
allow all;
satisfy any;
add_header Content-Disposition "attachment";
}
Merci d'avance pour votre aide !$app["cakebox.host"] = ""; //domain where cakebox is hosted
up, personne n'a eu ce souci en reinstallant sa box sous debian 7 ?dureiken wrote:Bonjour,
je reinstalle ma seedbox et je rencontre le même problème que précédemment, le souci c'est que je ne me souviens plus comment je l'avais réglé
http://imgur.com/a/SadrW
Ca me le fait sur 2 seed, 2 fois réinstallées, en utilisant le tuto de lokii et celui de magicalex, exactement pareil
Je suis en php 5.6
Merci d'avance pour votre aide !