- Modifié
Bonjour à tous,
Serveur dédié fraichement réinstaller sous Debian 10.2 ; j’ai tenté le Tardis de Jedediah, j’apprécie cette présentation ce depuis son tuto en avril 2016. L’installation ne fut pas simple ! Bloquage au niveau du bower install …. Ci-dessous la manœuvre n’est pas très orthodoxe il est vrai mais ça fonctionne, j’ai réadapté les fichiers style.css et index.php que j’avais sauvegardé. Je retrouve la page directe sur mon domaine c’est parfait. Le hic c’est que je n’ai plus d’accès en admi afin que je puisse avoir accès aux liens ! Nginx 403 forbidden. Merci pour vos réponses. Bien cordialement.
Premier blocage à bower install --allow-root
cd /var/www
git clone https://github.com/Jedediah04/TARDIStart.git tardistart
cd tardistart
bower install --allow-root
cd /tmp
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
source ~/.bashrc
nvm install v7.8.0
npm install -g bower
chown -R www-data:www-data /var/www/tardistart
nano /etc/nginx/sites-enabled/rutorrent.conf
Config accueil serveur
location ^~ / {
root /var/www/tardistart;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
}
Fin config accueil serveur
Début config TARDIStart
location ^~ /tardistart {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
location ~ admin {
auth_basic "TARDIStart Admin Page";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_goech";
deny all;
}
}
Fin config TARDIStart