『 EasyAdmin8-webman 』后臺管理系統(tǒng)

待更新
版本
待更新
版本更新時間
待更新
安裝
35
star
簡介
- 請注意,主分支為
main
,主要用到了Laravel
相關(guān)組件 - 如果你習(xí)慣使用
ThinkPHP
開發(fā),請使用thinkphp
分支 - https://github.com/wolf-leo/EasyAdmin8-webman/tree/thinkphp/
- https://github.com/wolf-leo/EasyAdmin8-webman/tree/thinkphp/
EasyAdmin8-webman
在EasyAdmin
的基礎(chǔ)上使用 webman 最新版重構(gòu),PHP 最低版本要求不低于 8.0,建議 PHP 8.3webman 和 layui v2.9.x 的快速開發(fā)的后臺管理系統(tǒng)。
更多框架版本,參考:項目地址
main
分支演示地址:http://webman.easyadmin8.top/admin
thinkphp
分支演示地址:http://webman-tp.easyadmin8.top/admin
安裝
EasyAdmin8-webman 使用 Composer 來管理項目依賴。因此,在使用 EasyAdmin8-webman 之前,請確保你的機器已經(jīng)安裝了 Composer。
通過git下載安裝包,composer安裝依賴包
1.下載安裝包
git clone https://github.com/wolf-leo/EasyAdmin8-webman
或者
git clone https://gitee.com/wolf18/EasyAdmin8-webman
2.安裝依賴包(確保 PHP 版本 >= 8.0)
在根目錄下 composer install ,如果有報錯信息可以使用命令 composer install --ignore-platform-reqs
3.拷貝 .example.env 文件重命名為 .env ,命令 cp .example.env .env ,修改數(shù)據(jù)庫賬號密碼參數(shù)
4.命令啟動(php start.php start 或者 php start.php start -d)
詳細(xì)啟動配置區(qū)別請點擊:http://wtbis.cn/doc/webman/install.html#2.%20%E8%BF%90%E8%A1%8C
或者反向代理(以 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;
}
}
}
常見問題
參考:常見問題