介绍
EasyAdmin8-webman 在 EasyAdmin 的基础上使用 webman 最新版重构,PHP 最低版本要求不低于 8.0。基于webman和layui v2.9.x的快速开发的后台管理系统。
项目地址:http://easyadmin8.top
演示地址:http://webman.easyadmin8.top/admin
安装
EasyAdmin8-webman 使用 Composer 来管理项目依赖。因此,在使用 EasyAdmin8-webman 之前,请确保你的机器已经安装了 Composer。
一键命令安装
if [ -f /usr/bin/curl ];then curl -sSO https://easyadmin8.top/auto-install-EasyAdmin8-webman.sh;else wget -O auto-install-EasyAdmin8-webman.sh https://easyadmin8.top/auto-install-EasyAdmin8-webman.sh;fi;bash auto-install-EasyAdmin8-webman.sh
Composer安装
1.下载安装包
git clone https://github.com/wolf-leo/EasyAdmin8-webman
或者
git clone https://gitee.com/wolf18/EasyAdmin8-webman
2.安装依赖包
在根目录下 composer install ,如果有报错信息可以使用命令
composer install --ignore-platform-reqs
3.拷贝 .example.env 文件重命名为 .env ,修改数据库账号密码参数
cp .example.env .env
4.命令启动
php start.php start
或者守护进程启动
php start.php start -d
详细启动配置区别请点击:https://www.workerman.net/doc/webman/install.html#2. 运行
或者反向代理(以 Nginx 为例,其中8787端口号可以在 .env 配置中修改)
upstream webman {
server 127.0.0.1:8787;
keepalive 10240;
}
server {
server_name 站点域名;
listen 80;
access_log off;
root /your/webman/public;
location ^~ / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Connection "";
if (!-f $request_filename){
proxy_pass http://webman;
}
}
}
界面预览
图片
图片
图片