Flarum搭建论坛详细教程

  • 📝教程
  • 3364 阅读
  • 2020年09月14日
  • 0 条评论
  • 全文共648字, 阅读大约需要2分钟
  • 搜索引擎已收录

首页 / 📝教程 / 正文

AI摘要
Gemini Pro
此内容根据文章生成,并经过人工审核,仅用于文章内容的解释与总结
反馈

1、关于Flarum

程序完美支持军哥lnmp环境/宝塔等,下载程序上传到网站根目录并需要伪静态+fileinfo扩展。

程序本地下载:FlarumChina-beta7.zip

Github下载地址:https://github.com/skywalker512/FlarumChina

fileinfo拓展

需要支持php扩展fileinfo

1、对于lnmp1.3默认没有支持。修改include/upgrade_php.sh这个文件,把其中的:--disable-fileinfo,全部替换:--enable-fileinfo,再执行./upgrade.sh升级php就行了。

2、对于宝塔,安装后,找到你的PHP程序,里面有扩展可以选择安装。

2、centos安装LNMP支持flarun

2 | 1 数据库安装

sudo wget https://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql-community-server
systemctl start  mysqld.service

2 | 2 mysql5.7获取密码的方式

sudo grep 'temporary password' /var/log/mysqld.log
vi /etc/my.cnf
#添加validate_password_policy配置
validate_password_policy=0
#关闭密码策略
validate_password = off

修改root密码

mysql -uroot -p密码
set global validate_password_policy=0;
set global validate_password_length=1;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
grant all privileges on *.* to root@"%" identified by "new password";
flush privileges;
systemctl restart mysql

2 | 3 安装php7.2

sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum install php72w-fpm php72w-cli php72w-curl php72w-dom php72w-gd php72w-json php72w-mbstring php72w-openssl php72w-pdo_mysql php72w-tokenizer php72w-zip -y
vim /etc/php-fpm.d/www.conf
#找到以下两处共四行代码并修改如下:
 user = nginx
 group = nginx
 
 listen.owner = nginx
 listen.group = nginx

3、安装Flarum

方法一:下载=即使用整合包

https://github.com/skywalker512/FlarumChina/releases/tag/v0.1.0-beta.12

方法二:composer拉取 (比较建议后面装插件都是用的composer)

3 | 1 安装composer

下载composer.phar, 如果是网络原因失败,多试几次

curl -sS https://getcomposer.org/installer | php

把composer.phar移动到环境下让其变成可执行:

mv composer.phar /usr/local/bin/composer

测试

composer -v

修改镜像地址

composer config repo.packagist composer https://mirrors.aliyun.com/composer/

3 | 2 安装ningx

yum -y install nginx unzip

进入wwwroot目录中使用composer命令来安装flarum:

mkdir /var/www/flarum/
cd /var/www/flarum/
composer create-project flarum/flarum . --stability=beta #不用使用管理员权限命令sudo。

完毕后修改nginx中的默认配置文件:

sudo vim /etc/nginx/nginx.conf
#将server代码段下的所有代码都用#注释掉
    #server {
    #    listen       80 default_server;
    #    listen       [::]:80 default_server;
    #    server_name  _;
    #    root         /usr/share/nginx/html;
 
    #    # Load configuration files for the default server block.
    #    include /etc/nginx/default.d/*.conf;
 
    #    location / {
    #    }
 
    #    error_page 404 /404.html;
    #        location = /40x.html {
    #    }
 
    #    error_page 500 502 503 504 /50x.html;
    #        location = /50x.html {
    #    }
    #}
#然后修改
server {    
    listen 80;
    server_name your.website.url;
    root  /var/www/flarum/public;
    index index.php index.html;
 
    #include /home/flarum/wwwroot/.nginx.conf;
 
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
location / {
  try_files $uri $uri/ /index.php?$query_string;
}

# The following directives are based on best practices from H5BP Nginx Server Configs
# https://github.com/h5bp/server-configs-nginx

# Expire rules for static content
location ~* \.(?:manifest|appcache|html?|xml|json)$ {
  add_header Cache-Control "max-age=0";
}

location ~* \.(?:rss|atom)$ {
  add_header Cache-Control "max-age=3600";
}

location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|mp4|ogg|ogv|webm|htc)$ {
  add_header Cache-Control "max-age=2592000";
  access_log off;
}

location ~* \.(?:css|js)$ {
  add_header Cache-Control "max-age=31536000";
  access_log off;
}

location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ {
  add_header Cache-Control "max-age=2592000";
  access_log off;
}

# Gzip compression
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
    application/atom+xml
    application/javascript
    application/json
    application/ld+json
    application/manifest+json
    application/rss+xml
    application/vnd.geo+json
    application/vnd.ms-fontobject
    application/x-font-ttf
    application/x-web-app-manifest+json
    application/xhtml+xml
    application/xml
    font/opentype
    image/bmp
    image/svg+xml
    image/x-icon
    text/cache-manifest
    text/css
    text/plain
    text/vcard
    text/vnd.rim.location.xloc
    text/vtt
    text/x-component
    text/x-cross-domain-policy;    
}

注意:因为Flarum遵守了最新的安全规范,其程序的运行目录其实是在public文件夹内。

4、插件安装

https://bbs.csur.fun/d/84-flarum

5、虚拟机搭建

买个虚拟机做网页,诸多限制,虚拟机服务商的提供的服务确实就两字“操蛋”。
为什么没有买云服务器?就两字 “没钱”!哈哈。
虚拟机的购买途径自寻,但是很多服务商真的很坑爹。
虚拟机要求

  • php支持7.2以上
  • mysql支持5.7以上
  • 能够支持更改网站跟目录

6、更改网站根目录层级

将 public 目录(包括 .htaccess)中的所有文件移动到 Flarum 根目录。然后编辑 .htaccess 取消第 9-14 行的注释,以保护敏感资源。
然后编辑 index.php 文件,更改以下行:

$site = require './site.php';

最后,在 site.php 更新路径,以反映新的目录结构:

'base' => __DIR__,
'public' => __DIR__,
'storage' => __DIR__.'/storage',

config.php 更新 url 路径

'url' => 'https://xxx.com/community',

不更改网站层级目录

请根据你的虚拟主机面板的不同,将网站运行目录指向public文件夹。
如果您使用的是虚拟主机无法更改目录,请按照一下的方法进行设置
在根目录下新建一个名为 .htaccess的文件

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ /public/$1 [L]
</IfModule>

7、其他

底部加统计

vendor/flarum/core/views/app.blade.php

去掉网络字体

vendor/flarum/core/src/Http/WebApp/WebAppView.php

伪静态设置

Nginx的话在站点配置文件处添加下面一段话。

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

location /api {
    try_files $uri $uri/ /api.php?$query_string;
}

location /admin {
    try_files $uri $uri/ /admin.php?$query_string;
}

location /flarum {
    deny all;
    return 404;
}

location ~ .php$ {
    fastcgi_split_path_info ^(.+.php)(/.+)$;
    fastcgi_pass unix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
}

8、相关资料

  1. markdown支持:https://discuss.flarum.org.cn/d/221
  2. 中文语言包:https://flarum.org/docs/languages/
  3. 中文github及程序下载:https://github.com/justjavac/Flarum
  4. 中文语言包下载:https://github.com/Flarum-Chinese/flarum-ext-simplified-chinese/releases
  5. SMTP相关:https://github.com/flarum/core/issues/258
  6. 论坛类程序推荐:https://www.v2ex.com/t/268523
  7. 中文优化版:https://discuss.flarum.org.cn/d/402
  8. 插件整理:https://discuss.flarum.org.cn/d/306

Via:

https://www.moewah.com/archives/833.html

https://www.cnblogs.com/lzq70112/p/13160725.html

 赞  赏

如果觉得我的文章对你有用,请随意打赏

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开  或者  扫一扫,即可进行扫码赞赏哦

本文经授权后发布,本文观点不代表立场,转载请联系原作者。
本文最后更新于2023年03月05日21时29分56秒,已超过411天没有更新,若内容或图片失效,请留言反馈
本文链接:https://nie.su/archives/2161.html(转载时请注明本文出处及文章链接)
作品采用:《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权

发表评论

博主 - <?php $this->author->screenName(); ?>

love2wind

记录生活,分享世界