Update README.md

pull/1219/head
cnlh 2018-11-06 14:28:10 +08:00 committed by GitHub
parent d432e63eec
commit 9ebb7c3209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 16 deletions

View File

@ -55,13 +55,6 @@ httpport | 代理的http端口与nginx配合使用
名称 | 含义 名称 | 含义
---|--- ---|---
config | 配置文件路径 config | 配置文件路径
- 详细说明
[详细教程](https://github.com/cnlh/easyProxy/wiki/%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B)
## 配置文件config.json ## 配置文件config.json
``` ```
@ -74,12 +67,12 @@ config | 配置文件路径
}, },
"SiteList": [ "SiteList": [
{ {
"host": "a.server.ourcauc.com", "host": "server1.ourcauc.com",
"url": "10.1.50.203", "url": "10.1.50.203",
"port": 80 "port": 80
}, },
{ {
"host": "b.server.ourcauc.com", "host": "server2.ourcauc.com",
"url": "10.1.50.196", "url": "10.1.50.196",
"port": 4000 "port": 4000
} }
@ -118,11 +111,11 @@ upstream nodejs {
} }
server { server {
listen 80; listen 80;
server_name *.server.ourcauc.com; server_name server1.ourcauc.com server2.ourcauc.com;
location / { location / {
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host:8224; proxy_set_header Host $http_host:8024;
proxy_set_header X-Nginx-Proxy true; proxy_set_header X-Nginx-Proxy true;
proxy_set_header Connection ""; proxy_set_header Connection "";
proxy_pass http://nodejs; proxy_pass http://nodejs;
@ -130,11 +123,14 @@ server {
} }
``` ```
## 域名配置示例 ## 域名配置示例
> -server A 123.206.77.88 > -server1 A 123.206.77.88
> -server2 A 123.206.77.88
> *.server CNAME server.ourcauc.com.
## 操作系统支持 ## 操作系统支持
支持Windows、Linux、MacOSX等无第三方依赖库。 支持Windows、Linux、MacOSX等无第三方依赖库。
## 二级域名泛解析配置详细教程
[详细教程](https://github.com/cnlh/easyProxy/wiki/%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B)