开源实例之LightPicture
前言
LightPicture 是一款轻量图片资源管理系统、图床系统,使用thinkphp + vue开发。
实例地址
https://lightpicture.dujun.eu.org
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 7.4 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | LightPicture 1.2.2 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装 MySQL
- 已安装 Nginx
安装程序
官网地址:http://picture.h234.cn
仓库地址:https://github.com/osuuu/LightPicture
Nginx 配置
server {
listen 80;
root /wwwroot/app/public;
index index.html index.php;
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
……
}
安装
下载代码,解压到 WEB 目录,本例为 /wwwroot/app。
网站启动后访问 /install,按照引导完成安装。
实例体验
后记
本实例仅供参考,不定期重置数据。