八月 2017
17
08月
CentOS 7 上安装 Drupal 8
作者:蒲公英
1条评论
说明:本文也适用于 Drupal 7
安装 Drupal 8 之前,你需要在 CentOS 7 上安装 LEMP ,没有安装的话请参考《CentOS7 上安装 LEMP》。
第一步: 下载 Drupal
从官方站点直接下载 Drupal,当前版本 8.2.2。
wget http://ftp.drupal.org/files/projects/drupal-8.2.2.tar.gz
解压
tar zxvf drupal-8.2.2.tar.gz
把解压后文件移动到默认 web 目录
sudo mv drupal-8.2.2 /usr/share/nginx/html
第二步: 配置
17
08月
CentOS 7 上安装 LEMP (四):性能优化
作者:蒲公英
0条评论
本节内容主要参考了:https://tweaked.io/guide/nginx/ Nginx
是一款小而快地 Web 服务器,但仍有优化的余地。
一般性优化
恰当设置 worker_processes 的值 Nginx 使用固定数量的 Worker,每个 Worker 都会参与请求的处理。
一般的经验是把 Worker 的数量设置为与服务器的 CPU 内核数相同。
取得 CPU 内核数的方法如下:
$ grep ^processor /proc/cpuinfo | wc -l
四核处理器的配置类似这样:
17
08月
CentOS 7 上安装 LEMP (三):安装 phpMyAdmin 及安全设置
作者:蒲公英
0条评论
原文:How To Install and Secure phpMyAdmin with Nginx on a CentOS 7 Server
我们仍然使用 yum 安装 phpMyAdmin。
$ sudo yum install phpmyadmin
为了使 Nginx 找到 phpMyAdmin,需要创建一个从安装目录到 Nginx 文档根目录的符号链接。
$ sudo ln -s /usr/share/phpMyAdmin /usr/share/nginx/html
重起 php-fpm
$ sudo systemctl restart php-fpm
测试 phpMyAdmin 运行:
17
08月
CentOS 7 上安装 LEMP(二):安装 Nginx,MariaDB 和 PHP
作者:蒲公英
0条评论
原文:How To Install Linux, Nginx, MySQL, PHP (LEMP) stack On CentOS 7
安装 Nginx
增加 CentOS 7 EPEL 库
$ sudo yum install epel-release
安装 Nginx
$ sudo yum install nginx
启动 Nginx
$ sudo systemctl start nginx
如果运行了防火墙,运行以下命令允许 http 和 https 传输