- Modifié
Bonjour,
J'ai une seedbox sur serveur dédié en debian 11. instal via script Extrat modifié par Djedje93
Rutorrent fonctionne parfaitement, mais je rencontre une erreur quand je souhaite créer un lien de partage via Problème filemanager-share (partage de fichier).
Mon fichier conf.php :
<?php
// duration & links limits
// 0 = unlimited
$limits['duration'] = 2000; // maximum duration hours
$limits['links'] = 0; //maximum sharing links per user// extra
$limits['nolimit'] = 0; // allow unlimited duration (=~ 100 years) with duration = 0 (the maximum duration limit is kept) [1 = yes | 0 = no]// path on domain where a symlink to share.php can be found
// example: http://mydomain.com/share.php
//$downloadpath = '//'.$_SERVER['HTTP_HOST'].'/rutorrent/plugins/filemanager-share/share.php';
$downloadpath = 'http://XXX.XXX.XXX.XXX/share.php';// automatically remove shares - only when removing the file or the containing directory
$autoRemove = false;// automatically remove expired shares - called only when removing
$purgeExpired = true;return ['limits' => $limits,
'endpoint' => $downloadpath,
"key" => "mycu570m3ncryp710xxx",
"remove_share_on_file_delete" => $autoRemove,
"purge_expired_shares" => $purgeExpired
];
Le lien de partage est bien créé et quand je copie le lien dans le navigateur, j'ai une erreur 404 Not Found Nginx
Avez-vous une idée de ce que je peux apporter comme modification pour que cela fonctionne ?
Merci par avance