본문 바로가기

Yii Framework/Guide to Yii 1.0

03. Apache and Nginx의 구성

yiiframework 의 The Definitive Guide를 개인적으로 직역 정리한 곳 입니다.

영어전공자도 아니며 영어라 친하지도 않습니다.

그냥 보면서 직영으로 옮겨 놓은것으로 오역이나 잘못된 부분이 있는 경우 알려 주시면 수정하겠습니다.

이 페이지의 원문 : http://www.yiiframework.com/doc/guide/1.1/en/quickstart.apache-nginx-config


설치

  1. Apache
  2. Nginx


1. Apache

Yii 는 Apche 기본 웹 서버에서 작동할 준비가 되었습니다. htaccess로 Yii 프레임워크 및 응용 프로그램 폴더에있는 파일은 제한된 리소스에 대한 액세스를 제한합니다.

URL에서 부트 스트랩 파일 (일반적으로 index.php)을 감추기 위해 문서 루트 .htaccess 파일 또는 가상 호스트 구성 파일에 mod_rewrite 의 설정을 추가 할 수 있습니다.

RewriteEngine on

# prevent httpd from serving dotfiles (.htaccess, .svn, .git, etc.)
RedirectMatch 403 /\..*$
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php


2. Nginx

Yii는 Nginx 와 PHP + FPM SAPI 의 조합에서도 작동합니다. 다음은 호스트 구성의 예제입니다.

이 호스트 구성은 부트 스트랩 파일을 정의하고 존재하지 않는 파일에 대한 모든 요청을 yii가 포착하도록 하고 보기 좋은 URL을 사용할 수 있습니다.

server {
    set $host_path "/www/mysite";
    access_log  /www/mysite/log/access.log  main;

    server_name  mysite;
    root   $host_path/htdocs;
    set $yii_bootstrap "index.php";

    charset utf-8;

    location / {
        index  index.html $yii_bootstrap;
        try_files $uri $uri/ /$yii_bootstrap?$args;
    }

    location ~ ^/(protected|framework|themes/\w+/views) {
        deny  all;
    }

    #avoid processing of calls to unexisting static files by yii
    location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
        try_files $uri =404;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php {
        fastcgi_split_path_info  ^(.+\.php)(.*)$;

        #let yii catch the calls to unexising PHP files
        set $fsn /$yii_bootstrap;
        if (-f $document_root$fastcgi_script_name){
            set $fsn $fastcgi_script_name;
        }

        fastcgi_pass   127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fsn;

        #PATH_INFO and PATH_TRANSLATED can be omitted, but RFC 3875 specifies them for CGI
        fastcgi_param  PATH_INFO        $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fsn;
    }

    # prevent nginx from serving dotfiles (.htaccess, .svn, .git, etc.)
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }
}

이 구성을 사용하는 경우 php.ini에서 cgi.fix_pathinfo = 0 을 설정하여 시스템 함수 stat () 불필요한 호출을 방지 할 수 있습니다.