开源实例之miniBB
前言
miniBB is a standalone, open source software for building your own Internet forum, it's free to download and highly customizable. It's a genuine script, professionally written from scratch using a simple PHP code, but being not a clone of any existing forum program. Comparing to the other message board apps available on the market, miniBB just brings what it's created for: an easy, lite, and speedy quick forum.
miniBB 是一个轻量的开源 PHP 论坛系统,支持多语言,并提供了多种插件。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 7.4 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | miniBB 3.5 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装数据库,如 MySQL
- 已安装 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
安装程序
下载压缩包解压到服务器域名解析的目录,修改 setup_options.php 文件中数据库等字段数据,然后访问网站并根据安装程序引导填写即可。
实例体验
后记
本实例仅供参考,不定期重置数据。