Procházet zdrojové kódy

Add files via upload

Dan Nuggetsman před 1 týdnem
rodič
revize
bc3e104030
1 změnil soubory, kde provedl 5 přidání a 6 odebrání
  1. 5 6
      INSTALLATION.md

+ 5 - 6
INSTALLATION.md

@@ -1,12 +1,11 @@
 # INSTALLATION
    
-  Installing Puzzleu is more straightforward than what it could appear..   
+  Installing this web app is more straightforward than what it could appear.
   
-  First, if you use Nginx as reversed proxy just point the root of your web app to /path/to/YourPuzzleu/Public   
+  First, if you use Nginx as reversed proxy just point the root of your web app to /path/to/YourWebApp/Public/static  
   where the public content is located:
   
   <ol>  
-  <li>The static content hosted should be just of this kind: html, css, js, png, jpg, jpeg, gif, fonts, map, ico</li>   
   <li>Example of Nginx minimal configuration:
      
       server {   
@@ -14,9 +13,9 @@
         listen 80;
         listen [::]:80;
     
-        server_name yourpuzzleu.com;
+        server_name yourservername.xyz;
      
-        root /var/www/YourPuzzleu/Public;
+        root /path/to/YourWebApp/Public/static;
         index index.php; 
        
         location / {     
@@ -53,6 +52,6 @@
   </li>
   </ol>  
   
-  Apache instead should have DocumentRoot pointing to /path/to/YourPuzzleu/Public .   
+  Apache instead should have DocumentRoot pointing to /path/to/YourWebApp/Public .   
   
   Dan