Nginx

serveur nginx

exempleS avec nginx:

  • nginx est disponible en mode opensource, téléchargeable par YUM ou ACS

    Pour installer, voyez cette page chez IBM : https://www.ibm.com/support/pages/how-install-nginx-ibm-i

  • pour la configuration, nous sommes partis de ce site https://bitbucket.org/ibmi/opensource/src/master/docs/nginx.md
    notre fichier nginx.conf
                                   
    ************Beginning of data**************  
     user nobody nogroup; 
     pid '/www/nginx/nginx.pid'; 
     events {} 
     http { 
       server { 
         listen 800; 
         server_name localhost; 
         location / { 
             root /www/nginx/html; 
             index index.html; 
         } 
       } 
     } 
    ************End of Data********************    
  • Nous avons aussi créé index.html dans le répertoire indiqué
  • lancé par :

  • Essayons


  • Arrêt par nginx - c /www/nginx/nginx.conf -s stop