开源实例之FUDforum
前言
FUDforum (Fast Uncompromising Discussion Forum) is a free and open source web discussion forum released under the GPL (version 2) license that is written in PHP and can be used on virtually any operating system. FUDforum combines an extensive feature set while maintaining the ability to generate forum web pages extremely fast. The forum includes i18n and templating support allowing for a complete customization of its output as well as a very capable group based permission system. FUDforum can also act as a Mailing List Manager, USENET newsreader and even an XML Feed Aggregator. This will allow you to build an instant community and consolidate all your messages into a single system.
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 7.4 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | FUDforum 3.1.2 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装数据库,如 MySQL
- 已安装 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
安装程序
官网地址:http://fudforum.org
项目地址:https://sourceforge.net/projects/fudforum
下载压缩包解压到服务器域名解析的目录,访问 /install.php 并根据安装程序引导填写即可。
实例体验
后记
本实例仅供参考,不定期重置数据。