Hello,
Tout d'abord, merci à tous ceux qui participent aux forums. J'ai déjà appris plein de trucs ! (même si je pige pas tout, je dois bien avouer).
Depuis hier, j'ai un Kimsufi. J'ai utilisé ce tuto
http://www.tech2tech.fr/installation-et-configuration-dune-seedbox-multi-utilisateur/ (qui ressemble vachement à ceci
http://mondedie.fr/d/5399 je l'ai découvert plus tard) pour installer rutorrent sur mon serveur que j'ai partionné. Ca marche nickel.
Je souhaite installer Pydio, dans le but de mettre une bibliothèque OPDS sur mon serveur. J'ai suivi à la lettre ce tuto-là
http://mondedie.fr/d/5558 mais ça ne passe pas. Je pense que mon fichier rutorrent.conf pose problème. Le voici :
server {
listen 80 default_server;
listen 443 default_server ssl;
server_name _;
index index.html index.php;
charset utf-8;
client_max_body_size 20G;
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; }
## Début de config Pydio ##
location /pydio {
root /var/www;
index index.php;
access_log /var/log/nginx/pydio.access.log;
error_log /var/log/nginx/pydio.error.log;
include /etc/nginx/conf.d/pydio_drop;
include /etc/nginx/conf.d/pydio_php;
include /etc/nginx/conf.d/pydio_cache;
satisfy any;
allow all;
}
## Fin de config Pydio ##
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 proxy ##
location ^~ /proxy {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
## fin config proxy ##
## 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 munin ##
location ^~ /graph {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
location ^~ /graph/img {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
error_log /dev/null crit;
}
location ^~ /monitoring {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
## fin config munin ##
## 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 ##
## config utilisateurs ##
location /user1 {
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_himad";
}
location /user2 {
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_lamuz";
}
}
Je pige pas trop ce qui ne va pas. Un très grand merci à qui saura m'aider !