https://docs.flarum.org/install
参考官方安装文档就行,先把基本都安装好,
其中有一个URL Rewriting ,我使用的Nginx,
所以需要创建一个,nginx.site.config
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name domain.com;
root /path/to/flarum/public;
index index.html index.htm index.php;
include /path/to/.nginx.conf;
# URI 符合正则表达式 [\.php$] 的请求将进入此段配置
location ~ \.php$ {
# 配置 FastCGI 服务地址,可以为 IP:端口,也可以为 Unix socket。
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
# 配置 FastCGI 的主页为 index.php。
fastcgi_index index.php;
# 配置 FastCGI 参数 SCRIPT_FILENAME 为 $realpath_root$fastcgi_script_name。
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
# 引用更多默认的 FastCGI 参数。
include fastcgi_params;
}
#ssl_certificate xxx
#ssl_certificate_key yyy
}
chown -R www-data:www-data /path/to/flarum
先创建一个数据库,一会安装时会使用
create database flarum(your database name)
访问nginx配置的域名来安装。
https://domain.com
还没有人评论,抢个沙发吧...