thinkpphp 5 nginx 프로필

1866 단어
LNMP 에서 thinkpphp 5 nginx 의 해석 설정  테스트 를 통 해 p5.4 - 5.6 모두 성공 적 으로 실행 할 수 있 습 니 다.
nginx version: nginx/1.11.5
 
server {
    listen 80;
    server_name    jq.cn;
    access_log    /app/logs/nginx/access.log;
    error_log    /app/logs/nginx/error.log;
    set        $root    /webapp/demo;
    location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
    {
        root $root;
    }
    location / {
        root    $root;
        index    index.html index.php;
        if ( -f $request_filename) {
            break;
        }
        if ( !-e $request_filename) {
            rewrite ^(.*)$ /index.php/$1 last;
            break;
        }
    }
    location ~ .+\.php($|/) {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        fastcgi_param    SCRIPT_FILENAME    $root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

 
다음으로 전송:https://www.cnblogs.com/open-i/p/6768758.html

좋은 웹페이지 즐겨찾기