Pages: 1
Bonjour,
avec l'URL d'une photo (http://exemple.com/chemin/de/la/photo.jpg), il est possible de la voir sans authentification même si celle-ci est privée.
Comment empêcher cela ?
Testé avec Piwigo 2.6.2, PHP 5.4.4, MySQL 5.5 sur serveur nginx 1.2 et lighttpd 1.4.31.
Hors ligne
Hors ligne
Super, ça marche :)
Je n'avais pas lu cette partie du manuel
RTFM a écrit:
In your local configuration file, add $conf['original_url_protection'] = 'images'; and in the upload (+ galleries if you add photos through FTP) add a .htaccess file with Deny from all.
Pour Nginx, j'ai ajouté au fichier /etc/nginx/sites-availible/monsite :
location ^~ /upload/ { deny all; }
Merci.
Hors ligne
Pages: 1