Yii/Yii2/Nginx/PHP-FPM configuration instance on CentOS6 system

Source: Internet
Author: User
: This article mainly introduces the CentOS6 system on the YiiYii2NginxPHP-FPM configuration instance, for PHP tutorials interested in students can refer. The configuration of the Yii application Apache is relatively simple. The nginx configuration mainly needs to handle the problem of a single entry file, that is, the following sentence corresponding to the Apache configuration:

# if a directory or a file exists, use it directlyRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-d# otherwise forward it to index.phpRewriteRule . index.php
The Nginx command must be translated. The example is as follows:

server {    listen 80;    server_name www.techbrood.com;    access_log logs/techbrood.access.log;    root /var/www/html/techbrood/web;    location / {        index index.php;        if (!-e $request_filename){          rewrite ^/(.*) /index.php last;        }    }    location ~ \.php(?|$) {        #fastcgi(php-fpm) listening on 127.0.0.1:9000        root /var/www/html/techbrood/web;        #your path to fastcgi_params file        include /etc/nginx/conf/fastcgi_params;         fastcgi_index index.php;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_pass 127.0.0.1:9000;        #fastcgi_pass unix: /var/run/php-fpm.sock    }    location ~ \.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {        root /var/www/html/techbrood/web;    }}

By iefreer

The above introduces CentOS6 system Yii/Yii2/Nginx/PHP-FPM configuration instance, including the content of the aspect, hope to be interested in PHP Tutorial friends help.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.