opis/colibri

This package is abandoned and no longer maintained. The author suggests using the opis-colibri/app package instead.

The application shell of the Opis Colibri framework

Package info

github.com/opis-colibri/app

Homepage

Type:project

pkg:composer/opis/colibri

Statistics

Installs: 1 409

Dependents: 4

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master / 2020.x-dev 2021-02-03 11:27 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Apache-2.0 1365f64069a6b9d0d8343053cc740e7d5be6c2a6

  • Marius Sarca <marius.sarca.woop@gmail.com>
  • Sorin Sarca <sarca_sorin.woop@hotmail.com>

frameworkphpopisopis colibri

This package is auto-updated.

Last update: 2021-02-03 11:28:01 UTC


README

👁 Latest Stable Version
👁 Latest Unstable Version
👁 License

Installation

Before trying to install Opis Colibri make sure you have Docker installed.

docker pull docker.pkg.github.com/opis-colibri/app/cli-alpine:latest
git clone https://github.com/opis-colibri/app.git myapp
cd myapp && composer docker install

Once the project is installed, you can start the built-in PHP server. The server will start on port 8080.

composer docker-serve

Local server

 php -S localhost:8080 -c php.ini -t public router.php

Apache configuration

<VirtualHost *:80>

 ServerName website.dev
 DocumentRoot /var/www/website.dev/public
 Alias /assets /var/www/website.dev/assets

 <Directory /var/www/website.dev/public>

 AllowOverride All
 Order allow,deny
 allow from all

 </Directory>

</VirtualHost>

Nginx configuration

server {
 listen 80;
 server_name website.dev;
 root "/var/www/website.dev/public";

 index index.html index.htm index.php;

 charset utf-8;

 location /assets/ {
 alias "/var/www/website.dev/assets/";
 try_files $uri $uri/ /index.php?$query_string;
 }

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

 location = /favicon.ico { access_log off; log_not_found off; }
 location = /robots.txt { access_log off; log_not_found off; }

 access_log off;
 error_log /var/log/nginx/website.dev-error.log error;

 sendfile off;

 client_max_body_size 100m;

 location ~ \.php$ {
 fastcgi_split_path_info ^(.+\.php)(/.+)$;
 fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
 fastcgi_index index.php;
 include fastcgi_params;
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

 fastcgi_intercept_errors off;
 fastcgi_buffer_size 16k;
 fastcgi_buffers 4 16k;
 fastcgi_connect_timeout 300;
 fastcgi_send_timeout 300;
 fastcgi_read_timeout 300;
 }
}

Documentation

No documentation available yet.