开源实例之phpBB
前言
phpBB(PHP Bulletin Board)发布于 2000 年,是一个老牌的开源论坛程序,在国外占据非常高的市场份额。
phpBB is a free flat-forum bulletin board software solution that can be used to stay in touch with a group of people or can power your entire website. With an extensive database of user-created extensions and styles database containing hundreds of style and image packages to customise your board, you can create a very unique forum in minutes.
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 8.1 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | phpBB 3.3.9 |
实例部署
phpBB 的部署非常简单,提供了向导式安装。
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装数据库,如 MySQL
- 已安装 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
location / {
try_files $uri $uri/ =404;
if (!-e $request_filename) {
rewrite ^(.*)$ /app.php;
}
}
location /install/app.php {
try_files $uri $uri/ /install/app.php?$query_string;
}
location /app.php {
try_files $uri $uri/ /app.php?$query_string;
}
建数据库
创建一个数据库,用于在后面安装程序中使用。
安装程序
从官网下载最新压缩包,当前 3.3.9 版本大小是 7.4 MB。解压到服务器域名解析的目录,然后访问网站,跟随安装程序引导填写即可。
实例体验
后记
本实例仅供参考,不定期重置数据。