Suite a une demande par MP

Voici la procédure après avoir réaliser le Tutoriel :
[Tuto] Installer ruTorrent sur Debian {nginx & php-fpm}

Pour commencer : Logger vous en root

Puis installation des paquets utiles :

Il vous sera demander de saisir le Mot de passe root de MySQL 2 fois indiquer MySQL_pw_root plus loin
apt-get install  php5-mysql mysql-server php5-gd php-xml-parser php5-intl
Téléchargement de owncloud
cd /tmp
wget https://download.owncloud.org/community/owncloud-6.0.4.tar.bz2
tar -xvf owncloud-6.0.4.tar.bz2
mv owncloud /var/www/
chown -R www-data /var/www/owncloud
rm owncloud-6.0.4.tar.bz2
Configuration de nginx
nano /etc/nginx/sites-enabled/owncloud.conf
// Remplacer 2 fois owncloud.xxxx.org par votre sous_domaine.domaine.
upstream php-handler {
        #server 127.0.0.1:9000;
        server unix:/var/run/php5-fpm.sock;
}

server {
        listen 80;
        server_name owncloud.xxxx.org;
        return 301 https://$server_name$request_uri;  # enforce https
}

server {
        listen 443 ssl;
        server_name owncloud.xxxx.org;


			  index index.html index.php;
    	  charset utf-8;

        ssl_certificate /etc/nginx/ssl/server.crt;
        ssl_certificate_key /etc/nginx/ssl/server.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;
        }

        location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
                deny all;
        }

        location / {
                # The following 2 rules are only needed with webfinger
                rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
                rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

                rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
                rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;

                rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;

                try_files $uri $uri/ index.php;
        }

        location ~ ^(.+?\.php)(/.*)?$ {
                try_files $1 = 404;

                include fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $document_root$1;
                fastcgi_param PATH_INFO $2;
                fastcgi_param HTTPS on;
                fastcgi_pass php-handler;
        }

        # Optional: set long EXPIRES header on static assets
        location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
                expires 30d;
                # Optional: Don't log access to assets
                access_log off;
        }

}
service nginx restart
Création de la base SQL
mysql -u root -p
Rentrer MySQL_pw_root

Modifier 2 fois mon_password par le password que owncloud utilisera pour se connecter a la base MySQL.
CREATE DATABASE owncloud;

CREATE USER "owncloud"@"localhost";

SET password FOR "owncloud"@"localhost" = password('mon_password');

GRANT ALL PRIVILEGES ON owncloud.* TO "owncloud"@"localhost" IDENTIFIED BY "mon_password";

FLUSH PRIVILEGES;

EXIT
Ensuite allez sur le site http://owncloud.xxxx.org

Rentrer votre compte admin

Rentrer votre compte admin

puis pour la partie configurer la base de donné :
owncloud
mon_password
owncloud
localhost

Et valider

Enfin un message d'erreur avec webdav apparaît si votre certificat ssl n'est pas signé.

pour remédier a ce problème il suffit de :
nano /var/www/owncloud/3rdparty/Sabre/DAV/Client.php
rechercher avec un ctrl + w "$curlSettings"
        $curlSettings = array(
            CURLOPT_RETURNTRANSFER => true,
            // Return headers as part of the response
            CURLOPT_HEADER => true,
            // For security we cast this to a string. If somehow an array could
            // be passed here, it would be possible for an attacker to use @ to
            // post local files.
            CURLOPT_POSTFIELDS => (string)$body,
            // Automatically follow redirects
            CURLOPT_FOLLOWLOCATION => true,
            CURLOPT_MAXREDIRS => 5,

        );
et remplacer par
        $curlSettings = array(
            CURLOPT_RETURNTRANSFER => true,
            // Return headers as part of the response
            CURLOPT_HEADER => true,
            // For security we cast this to a string. If somehow an array could
            // be passed here, it would be possible for an attacker to use @ to
            // post local files.
            CURLOPT_POSTFIELDS => (string)$body,
            // Automatically follow redirects
            CURLOPT_FOLLOWLOCATION => true,
            CURLOPT_MAXREDIRS => 5,
            CURLOPT_SSL_VERIFYPEER => 0,
            CURLOPT_SSL_VERIFYHOST => 0,

        );
Répondre…