Simple Nginx fastcgi Configuration

Source: Internet
Author: User

Note the use of the Index,try_files directive

server {Listen 8803 default_server;
server_name test.php.360.cn;


Root/data/www/test;
Index index.html index.htm index.php;

Location/{
Try_files $uri $uri//index.php; #try_files will automatically remove the trailing slash
}

Location ~ \.php$ {
Try_files $uri = 404; #优化文件不存在的话提前报错, fascgi 404 File not found.
Include fastcgi.conf;
Fastcgi_pass 127.0.0.1:9000;
}

}


server {
Listen 80;


server_name yaf.com;


Root/home/acmer1183/yaf/public;


Index index.php index.html;

Access_log/data/nginx/logs/yaf.com.access.log;
Error_log/data/nginx/logs/yaf.com.error.log;

Rewrite ^/$/static/index.html last; #处理首页跳转
Rewrite/\. /deny last; #禁止访问隐藏文件

Location =/deny {
Deny all;
}


Location ^~/static/{
alias/home/acmer1183/yaf/static/;


Try_files $uri $uri/= 404;
}


Location ~ \.php$ {
Try_files $uri = 404;

Include fastcgi.conf;
Fastcgi_pass 127.0.0.1:9000;
}


Location/{
Try_files $uri $uri/index.php;
}


}


Related Article

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.