INSTALLATION.md 1.5 KB

INSTALLATION

Installing Homomm 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/YourHomomm/Public/static
where the static content is located:


  1. The static content hosted should be just of this kind: html, css, js, png, jpg, jpeg, gif, mp3, wav, fonts, map, ico

  2. Example of Nginx minimal configuration:
  3. server {

     listen 80 http2;
     listen [::]:80 http2;
    
     server_name yourname-homomm.com;
    
     root /var/www/Homomm/Public/static;
     index index.php; 
    
     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;        
     }
    
     location ~* ^.+\.(js|map|css|jpg|jpeg|gif|png|ttf|woff|woff2|eot|pdf|html|htm|zip|flv|swf|ico|xml|txt|wav|mp3)$ {
    
        gzip on;
        #gzip_http_version 1.1;
        gzip_comp_level 6;
        gzip_types text/css text/javascript application/x-javascript text/html;
        gzip_min_length 1000;
    
        expires 30d;
     }
    

    }

Apache instead should have DocumentRoot pointing to /path/to/YourHomomm/Public .

If you don't use Nginx as reversed proxy consider to merge /Public/static folder with /Public .

Dan