Bonjour a tous,
j'ai suivi le script bonobox ici pour rutorrent, j'ai ensuite installé plex media server, tous fonctionne parfaitement, aujourd'hui, j'ai voulu installé Owncloud, en suivant ce tuto :
https://mondedie.fr/d/5623
arrivé a Configuration de nginx :
nano /etc/nginx/sites-enabled/owncloud.conf
Je config mon fichier Owncloud comme dans le tuto en y ajoutant mon ndd , j'ai essayé sous un .ddns.net et sous un .fr, mais je ne pense pas que le problème viennent de ce fichier ( quoi que ? )
Mon fichier conf Owncloud :
upstream php-handler {
#server 127.0.0.1:9000;
server unix:/var/run/php5-fpm.sock;
}
server {
listen 80;
server_name monnomdedomaine.fr;
return 301 https://$server_name$request_uri; # enforce https
}
server {
listen 443 ssl;
server_name monnomdedomaine.fr;
index index.html index.php;
charset utf-8;
ssl_certificate /etc/ssl/certs/owncloud.crt;
ssl_certificate_key /etc/ssl/private/owncloud.key;
access_log /var/log/nginx/owncloud-access.log combined;
error_log /var/log/nginx/owncloud-error.log error;
# Path to the root of your installation
root /var/www/owncloud/;
client_max_body_size 10G; # set max upload size
fastcgi_buffers 64 4K;
rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
index index.php;
error_page 403 /core/templates/403.php;
error_page 404 /core/templates/404.php;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
}
Ensuite naturellement, comme dans le tuto, j'ai redémarré Nginx et voici ce qu'il me répond :
sudo /etc/init.d/nginx restart
[....] Restarting nginx (via systemctl): nginx.serviceJob for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details.
failed!
root@ns503xxx:/tmp# systemctl status nginx.service
● nginx.service - LSB: Stop/start nginx
Loaded: loaded (/etc/init.d/nginx)
Active: failed (Result: exit-code) since Thu 2016-04-07 15:15:21 CEST; 8s ago
Process: 32041 ExecStart=/etc/init.d/nginx start (code=exited, status=1/FAILURE)
Apr 07 15:15:21 ns503xxx.ip-192-99-xx.net nginx[32041]: nginx: [emerg] open()...
Apr 07 15:15:21 ns503xxx.ip-192-99-xx.net systemd[1]: nginx.service: control ...
Apr 07 15:15:21 ns503xxx.ip-192-99-xx.net systemd[1]: Failed to start LSB: St...
Apr 07 15:15:21 ns503xxx.ip-192-99-xx.net systemd[1]: Unit nginx.service ente...
Hint: Some lines were ellipsized, use -l to show in full.
Avait vous une idée ? depuis je n'ai plus accés a seedbox-manager , mais toujours mon accés plex et rutorrent ( sans plugin , sans torrent dedans... )
[07.04.2016 15:31:54] WebUI started.
[07.04.2016 15:31:59] Bad response from server: (0 [error,getplugins]) [Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://xxxxxxx/rutorrent/js/jquery.js :: .send :: line 5" data: no]
[07.04.2016 15:32:02] Bad response from server: (0 [error,getuisettings])
Merci pour vos futurs réponses.