Salut à tous, je suis nouveau sur ce forum, je poste ici car j'ai suivie
ce tuto à la lettre.
Aucune erreur au démarrage, mon rutorrent marche bien, mais j'ai un soucis sur cakebox.
En effet j’accède bien à l'interface l'identification fonctionne mais quand je clique sur download j'obtiens le message suivant:
A priori le streaming ne fonctionne pas car mon écran reste noir mais il faut que je regarde mieux de ce cotés avec d'autres fichier.
Voici mon fichier user.php:
<?php
/*
General configuration of Cakebox
*/
$app["cakebox.root"] = "/home/nico/torrents/"; // Root directory Cakebox have t$
$app["cakebox.access"] = "nico"; // Alias used in web server for direct access
/*
Directory settings
*/
$app["directory.ignoreDotFiles"] = false;
$app["directory.ignore"] = "//"; // Regex for files exclusion. For exemple : "/$
/*
Web player settings
*/
$app["player.default_type"] = "VLC"; // HTML5 or DIVX or VLC
Mon cakebox.conf:
server {
listen 80;
server_name cakebox.******.nf.fr;
root /var/www/cakebox/public;
index index.php;
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
charset utf-8;
include /etc/nginx/conf.d/cache;
access_log /var/log/nginx/cakebox-access.log;
error_log /var/log/nginx/cakebox-error.log;
location = / {
try_files @site @site;
}
location / {
try_files $uri $uri/ @site;
}
location /nico/ {
alias /home/nico/torrents/;
add_header Content-Disposition "attachment";
satisfy any;
allow all;
location @site {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_param APPLICATION_ENV production;
## uncomment when running via https
## fastcgi_param HTTPS on;
}
}
Si vous avez des idées je suis preneur car j'avoue que cela fait quelque jours que je cherche sans résultats.
Mon nom de domaine à étais remplacé pars des **** bien sur il est bien correctement renseigné dans le fichier de conf.
J'ai pris un domaine gratuit chez azerote je me demande si ce n'est pas ça qui fous la merde.