centos 7 시스템 nginx 서버 에서 phalcon 환경 구축 방법 에 대한 상세 한 설명

2358 단어
본 고 는 centos 7 시스템 nginx 서버 에서 phalcon 환경 구축 방법 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다. 구체 적 으로 는 다음 과 같 습 니 다.
이전에 우리 가 사용 한 것 은 Apache 서버 였 지만 1 초 에 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 서버 조작 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기