码迷,mamicode.com
首页 > 其他好文 > 详细

nginx配置虚拟域名以及代理

时间:2015-05-14 13:48:50      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

server {

listen 80;#监听80端口
server_name www.basic.com;#虚拟域名
root "D:/WWW/basic";#虚拟域名指向目录
location / {
index index.html index.htm index.php l.php;#autoindex当成首页的文件
autoindex on;
}

//配置php解析器,要不然它会把php后缀的文件当成一个静态文件下载

location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}

//代理设置

location /aaa{
access_log on;
rewrite ^/httk-admin/(.*?)$ /$1 break; #如果是访问/httk-admin/下  则代理到下面地址
proxy_pass http://********/aaa/$1?$query_string;
}
}

nginx配置虚拟域名以及代理

标签:

原文地址:http://www.cnblogs.com/tudou1223/p/4502989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!