소스 검색

Add files via upload

Dan Nuggetsman 1 주 전
부모
커밋
bc3e104030
1개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  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