Skip to content

obaviet/SiberianCMS

 
 

Repository files navigation

SiberianCMS: SAE Single App Edition

welcome

Documentation

Installation

Configuration

  1. First you will need to either checkout the project git clone https://github.com/Xtraball/SiberianCMS.git

    or download the zip archive then extract it on your webserver.

  2. Setup your empty database and user

  3. Configure your environment with apache or nginx

Apache

If you are running under Apache, be sure that the directive AllowOverride all is working, unless the .htaccess configuration will fail.

<VirtualHost [IP]:80>
        ServerName [yourdomain.tld]

		CustomLog [/path/to/siberiancms]/var/log/httpd.access_log combined
		ErrorLog [/path/to/siberiancms]/var/log/httpd.error_log

		DirectoryIndex index.php

        DocumentRoot [/path/to/siberiancms]

        <Directory [/path/to/siberiancms]>
                Options Indexes FollowSymLinks
                AllowOverride all
        </Directory>

</VirtualHost>

Nginx

If you are running under Nginx, all you need is in the current configuration, please check the fastcgi options as they may vary depending on your installation

server {
    listen [::]:80;

	root [/path/to/siberiancms];
		
	access_log [/path/to/siberiancms]/var/log/nginx.access_log;
	error_log [/path/to/siberiancms]/var/log/nginx.error_log;

	index index.php index.html index.htm;

	server_name [yourdomain.tld];
	
	location ~ ^/app/configs {
        deny all;
    }
    
    location ~ ^/var/apps/certificates {
        deny all;
    }
    
    # Let's Encrypt configuration
    location = /.well-known/check {
        default_type "text/plain";
        try_files $uri =404;
    }
    
    location ^~ /.well-known/acme-challenge/ {
        default_type "text/plain";
        try_files $uri =404;
    }

	location / {
		try_files $uri /index.php?$query_string;
	}

	location ~ \.php$ {
		fastcgi_index index.php;
		fastcgi_pass 127.0.0.1:9000;
		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
		include fastcgi_params;
		fastcgi_buffers 256 128k;
		fastcgi_connect_timeout 300s;
		fastcgi_send_timeout 300s;
		fastcgi_read_timeout 300s;
	}

    location ~* ^.+.(js|css|png|jpg|jpeg|gif|ico|html)$ {
		access_log        off;
		log_not_found     off;
		expires           0;
	}
	
	location ~ /\. {
		access_log off;
		log_not_found off;
		deny all;
	}

	gzip on;
	gzip_min_length  1000;
	gzip_proxied any;
	gzip_types text/plain application/xml text/css text/js application/x-javascript;
	
	client_max_body_size 256M;

}

When you're done with the previous steps, reload your web server.

Web installer

  • Go to http://yourdomain.tld then follow the instructions welcome

About

Siberian Single App Edition (SAE), free and open-source app builder.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 50.3%
  • JavaScript 19.0%
  • HTML 14.0%
  • Objective-C 6.7%
  • CSS 4.0%
  • Java 2.7%
  • Other 3.3%