Skip to content

therceman/copper_skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Copper Skeleton is a minimal and empty Copper project which you can base your new projects on.

Requirements

  • PHP 7.0 or higher

Installation

composer create-project rceman/copper_skeleton app

Usage

Configure a web server like Apache to run the application.

Apache with mod_php/PHP-CGI

The optimized configuration to get your application running under Apache is:

<VirtualHost *:80>
    ServerName domain.tld
    ServerAlias www.domain.tld

    DocumentRoot /var/www/project/public
    <Directory /var/www/project/public>
        AllowOverride None
        Order Allow,Deny
        Allow from All

        FallbackResource /index.php
    </Directory>

    ErrorLog /var/log/apache2/project_error.log
    CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>