Giter VIP home page Giter VIP logo

seanmvc's Introduction

SeanMVC

This is a PHP framework that uses MVC design pattern.

Before starting, please setup the framework in app/config/config.php.

Hosting this framework

Apache

If you are using Apache as webserver, please configure RewriteBase in public/.htaccess into your directory.

Nginx

If you are using Nginx as webserber, the following is the recommended configurations. Remember to change the site name in the example configuration.

server {
    listen 80;
    listen 443 ssl http2;
    server_name .seanmvc.test;
    root "/home/vagrant/code/seanmvc/public";

    index index.html index.htm index.php;

    charset utf-8;

    

    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/seanmvc.test-error.log error;

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.3-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;

        if ($request_uri ~* "(?<=^.)(.*)"  ) {
            set  $last_path_component  $1;
            rewrite (?<=^.)(.*)  /index.php?url=$last_path_component  break;
        }

        try_files $uri $uri/ =404;
    }

    location ~ ^/(css|js|img) {
        try_files $uri $uri/ =404;
    }

    location ~ /\.ht {
        deny all;
    }

    ssl_certificate     /etc/nginx/ssl/seanmvc.test.crt;
    ssl_certificate_key /etc/nginx/ssl/seanmvc.test.key;
}

seanmvc's People

Contributors

seancrx avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.