如何在 Ubuntu 20.04 LTS 上安装 Bludit CMS

Bludit 是一个免费的、开源的、基于文件的内容管理系统,可帮助您在一分钟内托管一个博客网站。Bludit 是一个平面文件 CMS,这(在本例中)意味着 Bludit 使用 JSON 格式的文件来存储内容。您不需要安装或配置数据库;您只需要一个支持 PHP 的 Web 服务器。bludit-cms-logo

Ubuntu 20.04 LTS Focal Fossa 上安装 Bludit CMS

步骤 1. 首先,通过apt在终端中运行以下命令确保所有系统包都是最新的。

sudo apt update
sudo apt upgrade

步骤 2. 安装 LAMP 堆栈。

需要 Ubuntu 20.04 LAMP 服务器。如果您没有安装 LAMP,您可以在本站搜索LAMP按照我们的教程进行操作。

步骤 3. 在 Ubuntu 20.04 上安装 Bludit CMS。

现在我们从 Bludit 官方网站下载当前的 Bludit 版本:

wget https://www.bludit.com/releases/bludit-3-13-1.zip
unzip bludit-*.zip
mv bludit-3-13-1 /var/www/html/bludit

我们需要更改一些文件夹的权限:

sudo chown -R www-data:www-data /var/www/html/bludit/

步骤 4. 为 Bludit CMS 配置 Apache。

现在我们在 Apache 中创建一个新的虚拟主机指令。例如,在您的虚拟服务器上创建一个名为“ ”的新 Apache 配置文件:bludit.conf

touch /etc/apache2/sites-available/bludit.conf
ln -s /etc/apache2/sites-available/bludit.conf /etc/apache2/sites-enabled/bludit.conf
nano /etc/apache2/sites-available/bludit.conf

添加以下几行:

<VirtualHost *:80>
ServerAdmin admin@yourdomain.com
DocumentRoot /var/www/html/bludit/
ServerName your-domain.com
ServerAlias www.your-domain.com
<Directory /var/www/html/bludit/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/your-domain.com-error_log
CustomLog /var/log/apache2/your-domain.com-access_log common
</VirtualHost>

现在,我们可以重新启动 Apache 网络服务器以进行更改:

sudo a2enmod rewrite
sudo a2ensite bludit.conf 
sudo systemctl restart apache2.service

步骤 5. 设置 HTTPS。

我们应该在 PrestaShop 上启用安全的 HTTPS 连接。我们可以从 Let’s Encrypt 获得免费的 TLS 证书。从 Ubuntu 20.04 存储库安装 Let’s Encrypt 客户端 (certbot):

sudo apt install certbot python3-certbot-apache

接下来,运行以下命令以使用 Apache 插件获取免费的 TLS 证书:

sudo certbot --apache --agree-tos --redirect --staple-ocsp --email you@example.com -d example.com

如果测试成功,请重新加载 Apache 以使更改生效:

sudo apache2ctl -t
sudo systemctl reload apache2

步骤 6. 配置防火墙。

如果您启用了 apache Web 服务器的防火墙和防火墙阻止请求,请在防火墙中打开一个端口:

sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw reload

步骤 7. 访问 Bludit CMS Web 界面。

默认情况下,PrestaShop 将在 HTTP 端口 80 上可用。打开您喜欢的浏览器并导航到https://your-domain.com/install.php

感谢您使用本教程在 Ubuntu 20.04 LTS Focal Fossa 系统上安装 Bludit 内容管理系统 (CMS)。如需其他帮助或有用信息,我们建议您查看Bludit 官方网站

 

VPS 管理服务优惠

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun53831.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年5月31日
下一篇 2021年5月31日

相关推荐