- Modifié
Allo!
Finalement le vrai problème c'est pas ma config de nginx mais c'est le pydio sync j'ai parlé avec les gars de pydio je ne suis pas le seule qui a le même problème mais avec interface web fonctionne très bien.
MattProd pour la config de nginx mon dossier web c'est /var/www/ pour qui nginx fait le lien entre ma vrai page web
Pour avoir pydio = location ~ /pydio dans mon dossier /var/www/ dans autre example pour avoir ma page web de wordpress Car avec nginx je peux avoir plusieurs page web ou services
Pour wordpress
Début de config wordpress
location ~ / {
root /var/www/wordpress;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
try_files $uri $uri/ /index.php?q=$uri&$args;
satisfy any;
allow all;
}
FIN de config wordpress
Ou teamspeak
Début config TeamSpeak
location ~ /teamspeak {
root /var/www;
auth_basic "teamspeak";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
access_log /var/log/nginx/ts3webint.access.log;
error_log /var/log/nginx/ts3webint.error.log;
}
## Fin config TeamSpeak ##
sinon tout le reste marche du tonnerre!