Nginx는 가상 머신을 구성합니다

WBOY
풀어 주다: 2016-08-08 09:21:41
원래의
824명이 탐색했습니다.

Window下配置:

서버 {

     듣기      80;
     server_name blog.com www.blog.com;
     루트        E:/phpStudy/WWW/yii_blog/3 ;
     위치 / {
         index   index.html index.php;
     }
     위치 ~* .(gif|jpg|png)$ {
         30일 만료;
     }
     위치 ~ .php$ {
         fastcgi_pass  localhost:9000;
         fastcgi_param SCRIPT_FILENAME
                   $document_root$fastcgi_script_name;
         포함       fastcgi_params;
     }

}  

Linux 다운로드配置:

server{

       listen 80;

       root /home/user/website/www;

       index index.php index.html index.htm;

       server_name localhost;

       location / {

           try_files $uri $uri/ /index.php;

       }

       location ~ .php$ {

           fastcgi_pass 127.0.0.1:9000;

           fastcgi_index index.php;

           fastcgi_param SCRIPT_FILENAME /home/user/website/www$fastcgi_script_name$fastcgi_script_name;

           include /etc/nginx/fastcgi_params;

       }

   }


저작권 안내 : 이 글은 해당 블로거의 원본 글이므로, 블로거의 허락 없이 복제할 수 없습니다.

위의 내용을 포함하여 Nginx 구성 가상 머신을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!