博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 6.3下nginx、php-fpm、drupal快速部署
阅读量:7078 次
发布时间:2019-06-28

本文共 2348 字,大约阅读时间需要 7 分钟。

一切本着从简原则来做,能yum/rpm的,坚决不手工编译 :)

本次部署环境基于CentOS 6.3 x86_64系统。
0. 准备工作

#更新yum[root@imysql ~]# yum -y update[root@imysql ~]# yum install libaio-devel.x86_64#drupal 8.0需要用到curl模块[root@imysql ~]# yum install curl-devel[root@imysql ~]# yum -y install libpng-devel libjpeg-devel freetype-devel gmp-devel libxml2-devel

1. 安装nginx

#安装nginx官方yum源包[root@imysql ~]# rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm[root@imysql ~]# yum -y install nginx[root@imysql ~]# chkconfig nginx on

2. 安装php-fpm

#安装php yum源包[root@imysql ~]# rpm -ivh rpm -Uvh http://repo.webtatic.com/yum/el6/latest.rpm[root@imysql ~]# yum -y install php54w

3. 配置nginx+php

/etc/nginx/nginx.conf 配置文件可以不用做任何修改。
编辑 /etc/nginx/conf.d/default.conf,以本站为例,配置文件如下:

server {    listen       80;    server_name  imysql.com *.imysql.com;    root   /data/www/imysql.cn/;    index index.php index.htm index.html index.shtml;    error_page  404               /page_not_found;    error_page   500 502 503 504  /page_not_found;    location ~ /\.ht {        deny  all;    }    if ($fastcgi_script_name ~ \..*\/.*php) {        return 403;    }    location / {        if (!-e $request_filename) {            rewrite ^/(.*)$ /index.php?q=$1 last;        }    }    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 ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {        expires 30d;    }    location ~ .*\.(js|css)?$ {        expires 1h;    }    location ^~ /sites/default/files/imagecache/ {        index index.php index.html;        if (!-e $request_filename) {            rewrite ^/(.*)$ /index.php?q=$1 last; break;        }    }}

上述配置包括了nginx虚拟主机的配置,以及drupal的rewrite规则配置,简单快速。

4. 启动测试

每次修改完配置文件后,都记得执行下面的命令测试配置文件正确性:

[root@imysql ~]# /etc/init.d/nginx configtestnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successful

确认配置文件无误后,执行下面的命令重载nginx,使其生效:

[root@imysql ~]# /etc/init.d/nginx reload#或者restart[root@imysql ~]# /etc/init.d/nginx restart

大功告成 :)

--------------------------------------分割线--------------------------------------

知数堂 ()培训是由资深MySQL专家叶金荣、吴炳锡联合推出的专业优质培训品牌,主要有MySQL DBA实战优化和Python运维开发课程,是业内最有良心、最有品质的培训课程。

转载地址:http://ecdml.baihongyu.com/

你可能感兴趣的文章
同时添加多个github ssh key的方法
查看>>
Essential Grid for ASP.NET MVC
查看>>
PDA使用异常指导手册
查看>>
goroutine背后的系统知识
查看>>
ubuntu安装nrpe无法安装问题
查看>>
命令操作
查看>>
SAN 光纤交换机配置远距离级联(EF)操作
查看>>
Web性能优化方案
查看>>
关于proteus闪退问题
查看>>
Android :实现一个手机卫士的一些要点
查看>>
mysql的备份与恢复
查看>>
Python SocketServer 网络服务器的框架一:基本知识
查看>>
psutil模块基础学习
查看>>
解决Windows8下IE10无法打开的故障
查看>>
MFSM 迁移工具使用教程
查看>>
我的友情链接
查看>>
从MYSQL到oracle的迁移以及备份
查看>>
Windows server 2008 R2 AD安装实录
查看>>
Mac下Android Studio中获取SHA1和MD5
查看>>
iOS 更改状态栏颜色和隐藏状态栏
查看>>