Nginx Installation & Konfiguration

Aus xinux.net
Zur Navigation springen Zur Suche springen

Installation

  • sudo apt-get install nginx

localhost

Nginx.jpg

HTML Seite

  • Die Standard Seite befindet sich unter /var/www/html/
  • Erstelle einen neuen Ordner unter www
root@poppe:/# mkdir /var/www/zuxerBsp
root@poppe:/# cd /var/www/zuxerBsp/
root@poppe:/var/www/zuxerBsp# vi index.html
  • Ein Standard Beispiel für eine html Seite wäre
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Hallo, Welt!</title>
</head>
<body>

Hallo, Welt!

Wir haben gerade erfolgreich unseren nginx Server aufgestellt!

</body>
</html>