centos7系统nginx服务器下phalcon环境搭建方法详解

本文实例讲述了Centos7系统nginx服务器下phalcon环境搭建方法。分享给大家供大家参考,具体如下:

丽江网站建设公司创新互联,丽江网站设计制作,有大型网站制作公司丰富经验。已为丽江超过千家提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的丽江做网站的公司定做!

之前我们采用的是Apache服务器,可是每秒响应只能达到2000,听说nginx可以轻易破万,

于是换成nginx试试。

phalcon的官网有nginx重写规则的示例,可是却与apache的不一致,被坑了好久。

1、添加nginx源

vi /etc/yum.repos.d/nginx.repo

 [nginx]
   name=nginx repo
   baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
   gpgcheck=0
   enabled=1

2、修改nginx的配置

vi /etc/nginx/conf.d/default.conf
server {
  listen 80;
  server_name localhost.dev;
  index index.php index.html index.htm;
  root /var/www/html;
  location / {
    root /var/www/html; #phalcon官网上是public目录,如果用这个目录就和apache的配置不一样了
    index index.php index.html index.htm;
    # 如果文件存在就直接返回这个文件
     if (-f $request_filename) {
      break;
    }
    # 如果不存在就重定向到public/index.php
    if (!-e $request_filename) {
      rewrite ^(.+)$ /public/index.php?_url=$1 last;
      break;
    }
  }
  location ~ \.php$ {
      try_files $uri =404;
      fastcgi_split_path_info ^(.+\.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 ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
    root /var/www/html/public;
  }
  location ~ /\.ht {
    deny all;
  }
}

3、php-fpm的配置

vi /etc/php-fpm.d/www.conf 

修改为用户和用户组

; RPM: apache Choosed to be able to access some dir as httpd
user = nginx
; RPM: Keep a group allowed to write in log dir.
group = nginx

4、用户组修改

chown -R nginx:nginx /var/lib/php/session/
chown -R nginx:nginx /var/www/html/

重启nginx、php-fpm,

systemctl restart nginx
systemctl restart php-fpm

进一步的优化且待之后的情况

希望本文所述对大家centos服务器操作有所帮助。

成都创新互联建站主营:成都网站建设、网站维护、网站改版的网站建设公司,提供成都网站制作成都网站建设、成都网站推广、成都网站优化seo、响应式移动网站开发制作等网站服务。

网站题目:centos7系统nginx服务器下phalcon环境搭建方法详解
标题URL:http://www.mswzjz.com/qtweb/news4/167654.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联