Skip to main content

Nginx Update Debian

Update von Nginx unter Debian 10 Buster


  1. Config Backup anlegen: cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak
  2. Aktuelle Nginx Version auslesen: nginx -v
  3. Repository hinzufügen: nano /etc/apt/sources.lis

    deb https://nginx.org/packages/debian/ buster nginx

    deb-src https://nginx.org/packages/debian/ buster nginx


  4. Nginx signing key hinzufügen:

    wget http://nginx.org/packages/keys/nginx_signing.key
    cat nginx_signing.key | apt-key add -

  5. apt update -y && apt upgrade -y
  6. apt install nginx
  7. Alte Konfigurationsdatei beibehalten (N) auswählen

image.png


 

Fehler beim Installieren:

Sollte es nicht zu der Abfrage der Konfigurationsdatei kommen, sondern ein Fehler auftreten, wie folgt vorgehen:

Kaputtes Nginx reparieren: apt install --fix-broken
Nginx deinstallieren: apt remove nginx nginx-common
Bei Schritt 6 weitermachen

Sollte Nginx bei der Installation nicht nach der Konfigurationsdatei fragen, muss die neu erstellte Datei anschließend durch das Backup ausgetauscht werden: cp /etc/nginx/nginx.conf.bak /etc/nginx/nginx.conf