06: Fehler in Anleitung korrigiert

main
Teena Steger 2025-11-05 12:43:31 +01:00
parent b759c413c1
commit 8f0345be6c
1 changed files with 11 additions and 11 deletions

View File

@ -26,15 +26,15 @@
3. Passen Sie die Konfiguration an:
- Datei: `C:\nginx\conf\nginx.conf`
```nginx
server {
listen 8080;
server_name localhost;
server {
listen 8080;
server_name localhost;
location / {
root /Users/{IhrUser}/meine-website;
index index.html index.htm;
try_files $uri $uri/ =404;
}
location / {
root html/meine-website;
index index.html index.htm;
try_files $uri $uri/ =404;
}
}
```
@ -103,9 +103,9 @@ Siehe [Deinstallations-Anweisungen](deinstallation.md).
6. Kopieren Sie Ihre Rezepte-Sammlung aus Übungsblatt 02 in Ihren Projektordner (`meine-website`). Benennen Sie die Hauptseite mit der Tabelle um zu `index.html`. Aktualisieren Sie dann die Webseite im Browser.
7. Apache stoppen:
```bash
httpd -k stop
```
```bash
httpd -k stop
```
8. Apache vollständig entfernen
Siehe [Deinstallations-Anweisungen](deinstallation.md).