30 Star 241 Fork 87

店滴云物联网开源框架 / ddiot-茶室民宿酒店棋牌室管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
系统安装.md 3.83 KB
一键复制 编辑 原始数据 按行查看 历史
店滴 提交于 2024-05-03 14:24 . 伪静态升级

安装

环境准备:

Php>=8.1
Redis 7.0.0
MySQL 5.6.50

第一步:git 下载代码

git clone https://gitee.com/wayfirer/ddicms.git

第二步:composer 扩展安装

cd 你的项目根路径
php composer.phar install

注:第一步和第二步也可以合并,缺点是后续git更新不方便,优点是安装快捷

composer create-project ddicloud/ddicms

第三步:执行安装命令


    php ./yii install

说明:提醒输入数据库版本,请输入:1.0.0

第五步:Nginx 部署配置

首先解析网站到 frontend,然后配置 nginx 如下:

server {
        listen        80;
        server_name  www.ai.com;
        root   "ddicms/frontend";
        add_header Access-Control-Allow-Origin *;
        add_header Access-Control-Allow-Headers X-Requested-With,Authorization,Content-Type,access-token,bloc-id,store-id;
        add_header Access-Control-Allow-Methods GET,POST,OPTIONS,PUT,DELETE;
        location / {
            index index.php index.html error/index.html;
            error_page 400 /error/400.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 500 /error/500.html;
            error_page 501 /error/501.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            error_page 504 /error/504.html;
            error_page 505 /error/505.html;
            error_page 506 /error/506.html;
            error_page 507 /error/507.html;
            error_page 509 /error/509.html;
            error_page 510 /error/510.html;
            include D:/www/firetech/frontend/web/nginx.htaccess;
            autoindex  off;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
        
        location /backend {
            index index.html;
            if (!-e $request_filename)
            {
                rewrite ^/backend/(.*)$ /backend.html last;
            }
        }
        
         location /shop {
            index index.html;
            if (!-e $request_filename)
            {
                rewrite ^/shop/(.*)$ /shop.html last;
            }
        }
        
        location /api {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/api/(.*)$ /api/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }

        location /admin {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/admin/(.*)$ /admin/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }
        
         location /help {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/help/(.*)$ /help/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }
        gzip on;
      	gzip_comp_level 5;
      	gzip_min_length 256;
      	gzip_proxied any;
      	gzip_vary on;
}

特别鸣谢

感谢以下的项目,排名不分先后

PHP
1
https://gitee.com/wayfirer/ddiot.git
git@gitee.com:wayfirer/ddiot.git
wayfirer
ddiot
ddiot-茶室民宿酒店棋牌室管理系统
main

搜索帮助

53164aa7 5694891 3bd8fe86 5694891