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>
 Wir haben gerade erfolgreich unseren nginx Server aufgestellt!
 </body>
 </html>

Kofiguration

  • Zuerst wird die Konfigurationsdatei erstellt und anschließend bearbeitet
root@poppe:/etc/nginx/sites-available# touch zuxer.desanex.de.conf
root@poppe:/etc/nginx/sites-available# vi zuxer.desanex.de.conf