Nginx反向代理配置文件
server {
    listen 192.168.66.88:;
    server_name 192.168.66.88:;
    root E:/Upays/public/;
    index index.php index.html;
    log_not_found off;
    access_log logs/upay-access.log;
    charset utf-;
    location ~ /\. { deny all; }
    location = /favicon.ico { }
    location = /robots.txt { }
    location / {
         if (!-e $request_filename) {
         rewrite  ^(.*)$  /index.php?s=$  last;
          break;
        }
   }
    location ~ \.php$ {
        try_files $uri /index.php =;
        fastcgi_pass 127.0.0.1:;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
        include fastcgi_params;
    }
  location /newsite/ {
        proxy_pass    http://192.168.66.89:8002;
        proxy_redirect default ;
    }
}
Nginx反向代理配置文件的更多相关文章
- nginx.conf nginx反向代理配置文件
		nginx反向代理配置文件 nginx.conf proxy_default.conf proxy.conf vhost/*.conf upstream/*.conf cache/*.conf ngi ... 
- nginx --反向代理配置文件
		配置文件如下图 server { listen 8080; server_name 0.0.0.0;//这里可以配置相应域名 root /www/facei; index index.html i ... 
- nginx - 反向代理 - 配置文件 header - 日志log格式
		server { listen ; server_name paas.service.consul; client_max_body_size 512m; access_log /data/bkdat ... 
- nginx - 反向代理 - 配置文件模板 - nginx 代理tcp的服务 - 部署示意图
		danjan01deiMac:~ danjan01$ cat /usr/local/etc/nginx/nginx.conf|grep -v '^$' worker_processes 1; even ... 
- Nginx反向代理配置可跨域
		由于业务需要,同一项目中的前端代码放在静态环境中,而后端代码放在tomcat中,但此时问题却出现了:前端使用ajax请求后端获取数据时出现如下报错 XMLHttpRequest cannot load ... 
- 十.nginx反向代理负载均衡服务实践部署
		期中集群架构-第十章-nginx反向代理负载均衡章节章节====================================================================== 0 ... 
- linux篇—Nginx反向代理负载均衡
		一.环境准备 反向代理功能架构 3台web服务器,组建出web服务器集群 web01 10.0.0.7 172.16.1.7 web02 10.0.0.8 172.16.1.8 web03 10.0. ... 
- nginx反向代理出现了代理的端口号
		nginx反向代理显示了代理的端口号 nginx反向代理配置文件 upstream mall { server 1.1.1.1:10261 weight=1; } server { listen 80 ... 
- 使用nginx反向代理到不同服务器(共享同一端口)配置文件
		使用nginx反向代理到不同服务器(共享同一端口)配置文件 https://blog.csdn.net/wang_k_123/article/details/72779443 https://www. ... 
随机推荐
- iOS 打电话、发短信、发邮件功能
			打电话 方法1 最简单最直接的方式:直接跳到拨号界面 NSURL *url = [NSURL URLWithString:@"tel://10010"]; [[UIApplicat ... 
- [Python] spides
			摘要:本文将介绍用Python进行的爬虫的各种练习以及涉及到的各种知识,包括Http协议,cookie等等 工具 Fiddler Python默认不用代理,所以fiddler不能截取它的包.如果想用用 ... 
- ZOJ	1967  POJ  2570  Fiber Network
			枚举起点和公司,每次用DFS跑一遍图,预处理出所有的答案.询问的时候很快就能得到答案. #include<cstdio> #include<cmath> #include< ... 
- [VC++]用CTime类得到当前日期、时间、星期,格式化(详细讲解)
			用CTime类得到当前日期.时间.星期,格式化(详细讲解)2009/05/12 09:48 A.M.① 定义一个CTime类对象 CTime time; ② 得到当前时间 time = CTime:: ... 
- Chapter 2 Open Book——11
			"Hey, Dad, welcome home." hey爸爸,欢迎回家. "Thanks." He hung up his gun belt and step ... 
- hdu_5680_zxa and set(想法题)
			题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=5680 题意: 问题描述 zxa有一个集合A=\{a_1,a_2,\cdots,a_n\}A={a1 ... 
- jquery datatable 参数api
			jQuery 的插件 dataTables 是一个优秀的表格插件,提供了针对表格的排序.浏览器分页.服务器分页.筛选.格式化等功能.dataTables 的网站上也提供了大量的演示和详细的文档进行说明 ... 
- actor
			_timcharper1月 20 02:18 @timcharper , so what app the actor model can help, and what app the thread m ... 
- tablehost
			返回键的拦截 @Override public boolean dispatchKeyEvent(KeyEvent event) { if (event.getKeyCode() == KeyEven ... 
- window窗体程序意外崩溃,EventType clr20r3错误的解决方法
			EventType clr20r3, P1 ggreadcard.exe, P2 1.0.0.0, P3 51d3d283, P4 zljy.common, P5 1.0.0.0, P6 4fc6c2 ... 
