bonjour à tous,
Alors j'ai installé cakebox-light. mais il y a un petit soucis, lorsque j'arrive sur la page, la video ne se lance pas, et le son est sur mute
http://hpics.li/8bf5cca
voici les codes des différents fichiers de conf :
/var/www/cakebox/app/config/corentin.php
merci pour l'aide.
Alors j'ai installé cakebox-light. mais il y a un petit soucis, lorsque j'arrive sur la page, la video ne se lance pas, et le son est sur mute
http://hpics.li/8bf5cca
voici les codes des différents fichiers de conf :
/var/www/cakebox/app/config/corentin.php
<?php
/*
General configuration of Cakebox
*/
$app["cakebox.root"] = "/home/corentin/torrents/"; // Root directory Cakebox have to scan
$app["cakebox.access"] = "/corentin/"; // Alias used in web server for direct access
/*
Web player settings
*/
$app["player.type"] = "VLC"; // HTML5 or DIVX or VLC
/*
Betaseries account
NB: Ask API key here http://www.betaseries.com/api/
*/
$app["bs.login"] = "";
$app["bs.passwd"] = "";
$app["bs.apikey"] = "";
cakebox.confserver {
listen 80;
server_name ca.***.fr; ## sous domaine obligatoire
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 /corentin/ {
alias /home/corentin/torrents/;
add_header Content-Disposition "attachment";
satisfy any;
allow all;
}
# location /<user2>/ {
# alias /home/<user2>/torrents/;
# add_header Content-Disposition "attachment";
# satisfy any;
# allow all;
# }
## etc si d'autre utilisateur ##
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;
}
}
rutorrent.conf :server {
listen 80;
listen 443 ssl;
server_name sb.***.fr;
index index.html index.php;
charset utf-8;
client_max_body_size 10M;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
access_log /var/log/nginx/rutorrent-access.log combined;
error_log /var/log/nginx/rutorrent-error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
location = /favicon.ico {
access_log off;
log_not_found off;
}
## début config accueil serveur ##
# location ^~ / {
# root /var/www/base;
# include /etc/nginx/conf.d/php;
# include /etc/nginx/conf.d/cache;
# satisfy any;
# allow all;
# }
## fin config accueil serveur ##
## début config rutorrent ##
location ^~ / {
root /var/www/rutorrent;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
location ~ /\.svn {
deny all;
}
location ~ /\.ht {
deny all;
}
}
location ^~ /rutorrent/conf/ {
deny all;
}
location ^~ /rutorrent/share/ {
deny all;
}
## fin config rutorrent ##
# ## début config seedbox-manager ##
#
# location ^~ /seedbox-manager {
# alias /var/www/seedbox-manager/public;
# include /etc/nginx/conf.d/php-manager;
# include /etc/nginx/conf.d/cache;
# }
#
## fin config seedbox-manager ##
## user configuration
location /ADMIN {
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_admin";
}
## user configuration
location /CEDRIC {
include scgi_params;
scgi_pass 127.0.0.1:5002; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_cedric";
}
## user configuration
location /GAETAN {
include scgi_params;
scgi_pass 127.0.0.1:5003; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_gaetan";
}
## user configuration
location /CORENTIN {
include scgi_params;
scgi_pass 127.0.0.1:5004; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_corentin";
}
## user configuration
location /ROMAIN {
include scgi_params;
scgi_pass 127.0.0.1:5005; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_romain";
}
}
seedbox-manager.conf : server {
listen 80;
listen 443 ssl;
server_name conf.***.fr;
index index.html index.php;
charset utf-8;
client_max_body_size 10M;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
access_log /var/log/nginx/rutorrent-access.log combined;
error_log /var/log/nginx/rutorrent-error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
location = /favicon.ico {
access_log off;
log_not_found off;
}
## début config accueil serveur ##
#
# location ^~ / {
# root /var/www/base;
# include /etc/nginx/conf.d/php;
# include /etc/nginx/conf.d/cache;
# satisfy any;
# allow all;
# }
## fin config accueil serveur ##
## début config rutorrent ##
# location ^~ /rutorrent {
# root /var/www;
# include /etc/nginx/conf.d/php;
# include /etc/nginx/conf.d/cache;
#
# location ~ /\.svn {
# deny all;
# }
#
# location ~ /\.ht {
# deny all;
# }
# }
# location ^~ /rutorrent/conf/ {
# deny all;
# }
# location ^~ /rutorrent/share/ {
# deny all;
# }
## fin config rutorrent ##
## début config seedbox-manager ##
location ^~ / {
root /var/www/seedbox-manager/public;
include /etc/nginx/conf.d/php-manager;
include /etc/nginx/conf.d/cache;
}
## fin config seedbox-manager ##
## user configuration
location /ADMIN {
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_admin";
}
## user configuration
location /CEDRIC {
include scgi_params;
scgi_pass 127.0.0.1:5002; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_cedric";
}
## user configuration
location /GAETAN {
include scgi_params;
scgi_pass 127.0.0.1:5003; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_gaetan";
}
## user configuration
location /CORENTIN {
include scgi_params;
scgi_pass 127.0.0.1:5004; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_corentin";
}
## user configuration
location /ROMAIN {
include scgi_params;
scgi_pass 127.0.0.1:5005; #ou socket : unix:/home/username/.session/username.socket
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_romain";
}
}
je précise que le serveur est à jour.merci pour l'aide.