Skip to content

volmir/todo-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ToDo application

Install

$ cd /path/to/htdocs
$ git clone https://github.com/volmir/todo-app.git
$ composer install

Virtual host example (Apache):

<VirtualHost *:80>
    <Directory "/var/www/todo-app">
        AllowOverride All
    </Directory>
    ServerName todo.app.local
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/todo-app/web
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Virtual host example (Nginx):

server {
    listen 80;
    root /var/www/todo-app/web;
    index index.php index.html;

    server_name todo.app.local;

    location / {
	try_files $uri /index.php$is_args$args;
    }

    location ~ ^/(index)\.php(/|$) {
	fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
	fastcgi_split_path_info ^(.+\.php)(/.*)$;
	include fastcgi_params;

	fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
	fastcgi_param DOCUMENT_ROOT $realpath_root;
    }

    location ~ /\.ht {
	deny all;
    }
}

RedBeanPHP ORM

https://www.redbeanphp.com/index.php https://prowebmastering.ru/redbeanphp-orm-dlya-php.html

About

Simple MVC application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published