Nginx Installation & Konfiguration: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
Zeile 15: Zeile 15:
  
 
*Ein Standard Beispiel für eine html Seite wäre
 
*Ein Standard Beispiel für eine html Seite wäre
<file>
+
<code>
 
   <!doctype html>
 
   <!doctype html>
 
   <html>
 
   <html>
Zeile 27: Zeile 27:
 
   </body>
 
   </body>
 
   </html>
 
   </html>
</file>
+
</code>

Version vom 23. März 2020, 15:55 Uhr

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>