开源实例之PunBB
前言
PunBB is a fast and lightweight PHP-powered discussion board. It is released under the GNU General Public License. Its primary goals are to be faster, smaller and less graphically intensive as compared to other discussion boards. PunBB has fewer features than many other discussion boards, but is generally faster and outputs smaller, semantically correct XHTML-compliant pages.
PunBB 是用 PHP 语言开发的轻量级论坛系统。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 7.4 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | PunBB 1.4.6 |
实例部署
权限要求
- 具有文件目录读写权限
- 已安装 PHP
- 已安装数据库,如 Mysql
- 已安装 WEB 服务器,如 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
安装程序
官网地址:https://punbb.informer.com
下载压缩包解压到服务器域名解析的目录,访问网站并根据安装程序引导填写即可。
实例体验
进入实例深度体验(拥有管理员权限)
后记
题图:爱蜜社 Vol.705 vanessa
本实例仅供学习参考,定期自动重置数据,请勿存放重要资料。
标签: 开源实例