commit b4af8c1664ba0bb6e4863caf87c45e80be1512a7 Author: bpetschowitsch Date: Mon Feb 9 14:24:36 2026 +0100 Create install_nginx.md nginx installation 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 +``` +