salut à tous!
Ton script a installé tout ce qu'il me faut depuis un moment, mais j'ai remarqué que lors des maj, j'ai ça:
apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
libxml2 linux-image-amd64
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

Une idée?

En effet un simple apt install "lepaquetkeptback" installe correctement ce qui manquait.
En fait j'hésitais à le faire...Merci!

    Salut a tous
    Zettai
    Le vhost ce trouve dans /etc/nginx/ratxabox.d/ , 2 utilisateurs pour une seule adresse comme pour rutorrent tu as une seule adresse pour plusieurs utilisateurs. (dans le vhost tu vas comprendre comme ça fonctionne)

    Cognotte
    😉

    Kkwete
    Oui quand cest des paquets important il l'installe pas en auto

      xavier Merci pour la réponse, je constate que la redirection se fait sur le même port, du coup on se partage le meme medusa. J'imagine que je vais devoir editer le vhost et la config de medusa du 2e user ? Dans ce cas ou vais je trouver le fichier a éditer pour le 2e medusa ?
      merci encore 🙂

      Bonjour,

      Impossible d'ouvrir Medusa sur mon navigateur internet (sur mon MAC), j'y arrive sur mon smartphone Android... Sur mon MAC j'ai le message suivant :

      Loading…
      If this is taking too long,
      click here to show the page.

      Et je ne peux cliquer nul part, il n'y a aucun changement.

      😅

        Essaie avec un autre navigateur/navigation privée ?

          spider1163

          Bon alors j'ai essayé google, firefox, safari de mon Mac... Navigation privée ou pas rien à faire.
          J'ai aussi essayé sur un PC, même problème ! 😅

          Par contre sur mon téléphone j'arrive à voir l'erreur suivante dans les logs :

          2019-10-04 15:10:46 WARNING CHECKVERSION :: [baad1e5] git config remote.origin.pushurl https://github.com/pymedusa/Medusa returned : error: could not lock config file .git/config: Permission denied. Treat as error for now
          2019-10-04 15:10:46 WARNING CHECKVERSION :: [baad1e5] git config remote.origin.url https://github.com/pymedusa/Medusa returned : error: could not lock config file .git/config: Permission denied. Treat as error for now

          Kyuu972
          Salut,
          Peux tu me posté le vhost de medusa stp (car on dirait un problème proxy de nginx)
          Pour erreur que tu as cest normal car on le fait fonctionner en multi utilisateurs alors que cest pas fait pour..(le premier utilisateur a droit au dossier git alors que tout le reste non)

            xavier

            Salut où puis-je trouver ce vhost? (Nginx?)

            server {
            listen 80 default_server;
            listen 443 default_server ssl http2;
            server_name _;

            index index.html index.php;
            charset utf-8;
            client_max_body_size 10M;
            
            ssl_certificate /etc/nginx/ssl/server.crt;
            ssl_certificate_key /etc/nginx/ssl/server.key;
            
            include /etc/nginx/conf.d/ciphers.conf;
            
            access_log /var/log/nginx/rutorrent-access.log combined if=$loggable;
            error_log /var/log/nginx/rutorrent-error.log error;
            
            error_page 500 502 503 504 /50x.html;
            
            auth_basic "seedbox";
            auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
            
            root /var/www;
            
            location = /favicon.ico {
            	access_log off;
            	log_not_found off;
            }
            
            location = /50x.html {
            	root /usr/share/nginx/html;
            }
            
            location ~ \.php$ {
            	fastcgi_index index.php;
            	include /etc/nginx/fastcgi_params;
            	fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            	fastcgi_pass unix:/run/php/php7.3-fpm.sock;
            }
            
            location ~* \.(jpg|jpeg|gif|css|png|js|map|woff|woff2|ttf|svg|eot)$ {
            	expires 30d;
            	access_log off;
            }
            
            location ~* \.(eot|ttf|woff|svg)$ {
            	add_header Acccess-Control-Allow-Origin *;
            }
            
            ## Config accueil serveur ##
            
            location ^~ / {
            	root /var/www/base;
            	include /etc/nginx/conf.d/php.conf;
            	include /etc/nginx/conf.d/cache.conf;
            	satisfy any;
            	allow all;
            }
            
            ## Config rutorrent ##
            
            location /rutorrent {
            	try_files $uri $uri/ /index.html;
            }
            
            location ~ ^/rutorrent/(conf|share)/(.+)$ {
            	deny all;
            }
            
            ## Config munin ##
            
            location /graph {
            }
            
            location /graph/img {
            	error_log /dev/null crit;
            }
            
            location /monitoring {
            	auth_basic "Monitoring";
            	auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_XXXX";
            }
            
            location ^~ /nginx_status {
            	stub_status on;
            	access_log off;
            	satisfy any;
            	allow 127.0.0.1;
            	deny all;
            }
            
            ## debut conf ratxabox ##
            
            include /etc/nginx/ratxabox.d/*.conf;
            
            ## fin conf ratxabox ##
            
            ## Config seedbox-manager ##
            
            location /seedbox-manager {
            	try_files /seedbox-manager/$uri /seedbox-manager/index.php$is_args$args;
            }
            
            ## Config utilisateurs ##
            
                location /XXXX {
                        include scgi_params;
                        scgi_pass 127.0.0.1:5001;
                        auth_basic "seedbox";
                        auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_XXXX";
                }

            }

              Kyuu972
              Dans /etc/nginx/ratxabox.d tu dois avoir un fichier medusa.conf

              Voici la conf présente dans medusa, j'ai volontairement caché les users sur le forum.

              location ~ /medusa {
              proxy_set_header Host $host;
              proxy_set_header X-Real-IP $remote_addr;
              proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
              proxy_set_header X-Forwarded-Host $host:443;
              proxy_set_header X-Forwarded-Server $host;
              proxy_set_header X-Forwarded-Port 443;
              proxy_set_header X-Forwarded-Proto $scheme;

              Websocket

              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection "upgrade";
              proxy_read_timeout 86400;
              if ($remote_user = "***") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              if ($remote_user = "
              ") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              if ($remote_user = "
              ") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              if ($remote_user = "
              *") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              if ($remote_user = "
              ") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              if ($remote_user = "
              ***") {
              proxy_pass http://127.0.0.1:5003;
              break;
              }
              }

              11 jours plus tard

              Kyuu972
              Salut,
              j’ai un peux zappé, test ça

              location ^~ /medusa {
                              proxy_set_header Host $host;
                              proxy_set_header X-Real-IP $remote_addr;
                              proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                              proxy_set_header X-Forwarded-Host $host:443;
                              proxy_set_header X-Forwarded-Server $host;
                              proxy_set_header X-Forwarded-Port 443;
                              proxy_set_header X-Forwarded-Proto $scheme;
                              # Websocket
                              proxy_http_version 1.1;
                              proxy_set_header Upgrade $http_upgrade;
                              proxy_set_header Connection "upgrade";
                              proxy_read_timeout 86400;
                              if ($remote_user = "xavier") {
                                      proxy_pass http://127.0.0.1:5003;
                                      break;
                              }
                      }

              il te faut utilisé une seul fois le port 5003.
              modifie xavier par ton utilisateur ($remote_user = "xavier")

                oui j'ai reload nginx mais rien à faire x)

                  xavier

                  ls -al /etc/nginx/ratxabox.d
                  total 20
                  drwxr-xr-x 2 root root 4096 Oct 21 18:59 .
                  drwxr-xr-x 7 root root 4096 Oct 4 01:18 ..
                  -rw-r--r-- 1 root root 201 Oct 4 01:53 esm.conf
                  -rw-r--r-- 1 root root 1744 Oct 21 18:49 medusa.back
                  -rw-r--r-- 1 root root 823 Oct 21 18:59 medusa.conf