- Modifié
Salut
Si tu as suivi le tuto ruTorrent de Magicalex, tu es en php7 ça doit venir de là surement.
Dans /etc/nginx/conf.d/php-manager.conf et /etc/nginx/sites-enabled/cakebox.conf
remplaces
fastcgi_pass unix:/var/run/php5-fpm.sock;
par :
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
et restart nginx
(si c'est pas ça, alors j'en sais rien)
Ex.
edit: Et y'a ça qui va pas, c'est l'un ou l'autre, relis le tuto
## début config seedbox-manager ##
location ^~ / {
root /var/www/seedbox-manager/public;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
}
location ~ /seedbox-manager {
alias /var/www/seedbox-manager/public;
include /etc/nginx/conf.d/php-manager.conf;
include /etc/nginx/conf.d/cache.conf;
}
## fin config seedbox-manager ##
}
en plus t'as une erreur:
location ~ /seedbox-manager {
c'est:
location ^~ /seedbox-manager {