- Modifié
Bonjour à tous.
Sur un serveur debian 8 x64 fraichement installé, j’installe le script rutorrent + seedbox manager d'ex_rat, tout fonctionne bien.
J'ai un nom de domaine (.ovh) qui pointe sur l'ip de mon dédié. (type A)
Le hic :
J'installe Nextcloud, j’extrais donc les fichiers dans le dossier /var/www/nextcloud,
Je créer un dossier /home/nextcloud/data pour le stockage de nextcloud,
Je donne les droits www-data:www-data et chmod 755 a tout le dossier /var/www/nextcloud et a tout le dossier /home/nextcloud.
Je créer la base de données mysql via ssh.
Jusque la, je pense être sur le bon chemin.
Je me rends sur http://mon_ndd.ovh/nextcoud, j'entre les informations demandées par l'assistant d'installation.
La page charge quelques secondes, puis je tombe sur une belle page blanche nginx 404 Not Found avec comme adresse :
http://mon_ndd.ovh/nextcloud/index.php/apps/files/
Au niveau d'nginx, je tente sans creer de fichier de conf, fonctionne pas, je tente avec les deux fichiers de conf dispo içi, pareil, ne fonctionne pas.
J'ai vraiment besoin d'aide, je suis vraiment perdu
Merci d'avance
PS : mon rutorrent.conf
Sur un serveur debian 8 x64 fraichement installé, j’installe le script rutorrent + seedbox manager d'ex_rat, tout fonctionne bien.
J'ai un nom de domaine (.ovh) qui pointe sur l'ip de mon dédié. (type A)
Le hic :
J'installe Nextcloud, j’extrais donc les fichiers dans le dossier /var/www/nextcloud,
Je créer un dossier /home/nextcloud/data pour le stockage de nextcloud,
Je donne les droits www-data:www-data et chmod 755 a tout le dossier /var/www/nextcloud et a tout le dossier /home/nextcloud.
Je créer la base de données mysql via ssh.
Jusque la, je pense être sur le bon chemin.
Je me rends sur http://mon_ndd.ovh/nextcoud, j'entre les informations demandées par l'assistant d'installation.
La page charge quelques secondes, puis je tombe sur une belle page blanche nginx 404 Not Found avec comme adresse :
http://mon_ndd.ovh/nextcloud/index.php/apps/files/
Au niveau d'nginx, je tente sans creer de fichier de conf, fonctionne pas, je tente avec les deux fichiers de conf dispo içi, pareil, ne fonctionne pas.
J'ai vraiment besoin d'aide, je suis vraiment perdu

Merci d'avance

PS : mon rutorrent.conf
server {
listen 80;
server_name mon_ndd.ovh;
location ~ /\.well-known/acme-challenge {
allow all;
}
location / {
return 301 https://mon_ndd.ovh$request_uri;
}
}
server {
listen 443 ssl http2;
server_name mon_ndd.ovh;
ssl_certificate /etc/letsencrypt/live/mon_ndd.ovh/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mon_ndd.ovh/privkey.pem;
ssl_stapling on;
ssl_stapling_verify on;
ssl_trusted_certificate /etc/letsencrypt/live/mon_ndd.ovh/fullchain.pem;
ssl_ecdh_curve secp384r1;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK';
resolver 8.8.8.8 8.8.4.4 208.67.222.222 208.67.220.220 216.146.35.35 216.146.36.36 valid=300s;
resolver_timeout 3s;
index index.php index.html;
charset utf-8;
client_max_body_size 250M;
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 "Private - Seedbox-Manager";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
location = /favicon.ico {
access_log off;
log_not_found off;
}
###########################################################################################
## debut config mon_ndd.ovh ##
location ^~ / {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
autoindex on;
}
## fin config mon_ndd.ovh ##
###########################################################################################
## debut config mon_ndd.ovh/rutorrent ##
location ^~ /rutorrent {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
location ~ /\.svn {
deny all;
}
location ~ /\.ht {
deny all;
}
}
location ^~ /rutorrent/conf/ {
deny all;
}
location ^~ /rutorrent/share/ {
deny all;
}
## fin config rutorrent ##
###########################################################################################
## debut config mon_ndd.ovh/seedbox-manager ##
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 ##
###########################################################################################
## debut config mon_ndd.ovh/upload ##
location ^~ /upload {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
auth_basic "Private - Upload";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_clusmi";
}
## fin config upload ##
###########################################################################################
## debut config mon_ndd.ovh/monitor ##
location ^~ /monitor {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
auth_basic "Private - Monitor";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_clusmi";
}
## fin config monitor ##
###########################################################################################
## debut config mon_ndd.ovh/prive ##
location ^~ /prive/clusmi {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
autoindex on;
auth_basic "Private - CLusmi";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_clusmi";
}
## fin config prive ##
###########################################################################################
location /CLUSMI {
include scgi_params;
scgi_pass 127.0.0.1:5001; #ou socket : unix:/home/username/.session/username.socket
auth_basic "Private - ruTorrent";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_clusmi";
}
}