forked from WEB-IMB-WS2526/lab-development-imb
06: Fehler in Anleitung korrigiert
parent
b759c413c1
commit
8f0345be6c
|
|
@ -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).
|
||||
Loading…
Reference in New Issue