开源实例之my little forum
前言
my little forum is a simple PHP and MySQL based internet forum that displays the messages in classical threaded view (tree structure). It is Open Source licensed under the GNU General Public License. The main claim of this web forum is simplicity. Furthermore it should be easy to install and run on a standard server configuration with PHP and MySQL.
实例地址
https://mylittleforum.dujun.eu.org
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 8.1 |
数据库 | MariaDB 10.5 |
服务器 | Nginx |
程序 | my little forum 2.5.4 |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装数据库,如 MySQL
- 已安装 Nginx
域名解析
以 Nginx 为例,配置 url 重写:
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
安装程序
官网地址:https://mylittleforum.net
仓库地址:https://github.com/My-Little-Forum/mylittleforum
下载压缩包解压到服务器域名解析的目录,访问 /install 并根据安装程序引导填写即可。
实例体验
后记
本实例仅供参考,不定期重置数据。