Explorar el Código

Update INSTALLATION.md

Daniele Bonini (皮夕): WebDev, DevOps and homomm.org by lots of Simplicity bits hace 3 años
padre
commit
1fb54c3477
Se han modificado 1 ficheros con 9 adiciones y 9 borrados
  1. 9 9
      INSTALLATION.md

+ 9 - 9
INSTALLATION.md

@@ -8,15 +8,15 @@
   <ol>  
   <li>The static content hosted should be just of this kind: html, css, js, png, jpg, jpeg, gif, mp3, wav, fonts, map, ico</li>   
   <li>Example of Nginx minimal configuration:
-      <br><br>
-      location ~* ^.+\.(php)$ {  
-        proxy_set_header Host $host;  
-        proxy_set_header X-Real_IP $remote_addr;  
-        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  
-  
-        proxy_http_version 1.1;  
-        proxy_set_header Connection "";  
-  
+      <br><br>   
+      location ~* ^.+\.(php)$ {     
+        proxy_set_header Host $host;     
+        proxy_set_header X-Real_IP $remote_addr;     
+        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;    
+       
+        proxy_http_version 1.1;     
+        proxy_set_header Connection "";     
+      
         proxy_pass http://apache;        
      }
      <br><br>