From b4af8c1664ba0bb6e4863caf87c45e80be1512a7 Mon Sep 17 00:00:00 2001 From: bpetschowitsch Date: Mon, 9 Feb 2026 14:24:36 +0100 Subject: [PATCH] Create install_nginx.md nginx installation --- install_nginx.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 install_nginx.md diff --git a/install_nginx.md b/install_nginx.md new file mode 100644 index 0000000..3679068 --- /dev/null +++ b/install_nginx.md @@ -0,0 +1,34 @@ +# Nginx Installation auf Debian + +Installation von Nginx auf einem **Debian-System**. + +## System aktualisieren +System und Paketlisten updaten: + +```bash +sudo apt update +sudo apt upgrade -y +``` + +### Nginx installieren +Nginx installiern: + +```bash +sudo apt install nginx -y +``` + +### Nginx Status prüfen +Nginx Status prüfen + +```bash +sudo systemctl status nginx +``` + +### Nginx testen +Nginx per Browser testen: +Es sollte **"Welcome to nginx!"** ersichtlich sein. + +``` +http://server_ip_address +``` +