v2ray / v2ray-core

A platform for building proxies to bypass network restrictions.
https://www.v2ray.com/
MIT License
45.24k stars 8.93k forks source link

将web+ws+vm更换为web+ws+vless之后无法连接 #2681

Closed dev-soragoto closed 4 years ago

dev-soragoto commented 4 years ago

除非特殊情况,请完整填写所有问题。不按模板发的 issue 将直接被关闭。 如果你遇到的问题不是 V2Ray 的 bug,比如你不清楚要如何配置,请使用Discussion进行讨论。

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明) 4.27.0 客户端windows 服务端linux 2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。 通过switchimega使用socks连接 3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等) 最初使用nginx+ws+vmess可以正常使用,将vmess改为vless时无法正常使用,nginx日志中出现错误,服务器端v2ray没有出现日志,日志级别均为debug,后续将vless协议改回vmess可以正常使用 4) 你期待看到的正确表现是怎样的? 连接正常 5) 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。

服务器端配置:

{
  "log": {
    "access": "/var/log/v2ray/access.log",
    "error": "/var/log/v2ray/error.log",
    "loglevel": "debug"
  },
  "inbounds": [
    {
      "listen": "127.0.0.1",
      "port": 57033,
      "protocol": "vless",
      "settings": {
        "clients": [
          {
            "id": "my-uuid",
        //"alterId":64
          }
        ],
        "decryption": "none",
        "disableInsecureEncryption": false
      },
      "sniffing": {
        "destOverride": [
          "http",
          "tls"
        ],
        "enabled": true
      },
      "streamSettings": {
        "network": "ws",
        "security": "none",
        "wsSettings": {
          "headers": {},
          "path": "/mypath"
        }
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "freedom",
      "settings": {}
    }
  ]
}

客户端配置:

{
    "policy":null,
    "log":{
        "access":"",
        "error":"",
        "loglevel":"debug"
    },
    "inbounds":[
        {
            "tag":"proxy",
            "port":10808,
            "listen":"127.0.0.1",
            "protocol":"socks",
            "sniffing":{
                "enabled":true,
                "destOverride":[
                    "http",
                    "tls"
                ]
            },
            "settings":{
                "auth":"noauth",
                "udp":true,
                "ip":"127.0.0.1"
            }
        },
        {
            "tag":"http-proxy",
            "port":10809,
            "listen":"127.0.0.1",
            "protocol":"http",
            "sniffing":{
                "enabled":true,
                "destOverride":[
                    "http",
                    "tls"
                ]
            },
            "settings":{
                "timeout": 0,
                "allowTransparent": false
            }
        }
    ],
    "outbounds":[
        {
            "tag":"proxy",
            "protocol":"vless",
            "settings":{
                "vnext":[
                    {
                        "address":"my.domain",
                        "port":443,
                        "users":[
                            {
                                "id":"my-uuid",
                                //"alterId":64,
                                "encryption":"none",
                                //"security":"auto"
                            }
                        ]
                    }
                ]
            },
            "streamSettings":{
                "network":"ws",
                "security":"tls",
                "tlsSettings":{
                    "allowInsecure":true
                },
                "wsSettings":{
                    "connectionReuse":true,
                    "path":"/mypath",
                    "headers":null
                }
            },
            "mux":{
                "enabled":true
            }
        }
    ],
    "routing":{
        "domainStrategy":"IPIfNonMatch"
    }
}

6) 请附上出错时软件输出的错误日志。在 Linux 中,日志通常在 /var/log/v2ray/error.log 文件中。

服务器端错误日志:

服务器端v2ray没有出现日志

客户端错误日志:

V2Ray 4.27.0 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.14.6 windows/amd64)
A unified platform for anti-censorship.
2020/08/15 21:30:55 [Info] v2ray.com/core/common/platform/ctlcmd: <v2ctl message> 
v2ctl> Read config:  D:\v2ray-windows-64\config.json
2020/08/15 21:30:55 [Debug] v2ray.com/core/app/log: Logger started
2020/08/15 21:30:55 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:10808
2020/08/15 21:30:55 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:10809
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:10808
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/udp: listening UDP on 127.0.0.1:10808
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:10809
2020/08/15 21:30:55 [Warning] v2ray.com/core: V2Ray 4.27.0 started
2020/08/15 21:30:55 [Info] [2050300811] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:30:55 [Info] [2050300811] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:30:55 [Info] [2050300811] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:30:55 [Info] [2050300811] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:30:55 tcp:127.0.0.1:57707 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:55 [Info] [3093060923] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:30:55 tcp:127.0.0.1:57706 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:30:55 [Info] [3093060923] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:30:55 [Info] [3093060923] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:30:55 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:56 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:57 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:58 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:30:58 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:30:59 [Info] [3093060923] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:30:59 [Info] [2050300811] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:30:59 [Info] [2050300811] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:30:59 [Info] [3093060923] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:30:59 [Info] [3760977823] v2ray.com/core/proxy/socks: TCP Connect request to tcp:suggestion.baidu.com:443
2020/08/15 21:30:59 [Info] [3760977823] v2ray.com/core/app/dispatcher: sniffed domain: suggestion.baidu.com
2020/08/15 21:30:59 [Info] [3760977823] v2ray.com/core/app/dispatcher: default route for tcp:suggestion.baidu.com:443
2020/08/15 21:30:59 [Info] [3760977823] v2ray.com/core/common/mux: dispatching request to tcp:suggestion.baidu.com:443
2020/08/15 21:30:59 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:59 tcp:127.0.0.1:57713 accepted tcp:suggestion.baidu.com:443 [proxy] 
2020/08/15 21:30:59 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:30:59 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:00 [Info] [786077850] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com.hk:443
2020/08/15 21:31:00 tcp:127.0.0.1:57717 accepted tcp:www.google.com.hk:443 [proxy] 
2020/08/15 21:31:00 [Info] [786077850] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com.hk
2020/08/15 21:31:00 [Info] [786077850] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com.hk:443
2020/08/15 21:31:00 [Info] [786077850] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com.hk:443
2020/08/15 21:31:00 [Info] [61130886] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:31:00 [Info] [61130886] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:31:00 tcp:127.0.0.1:57718 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:31:00 [Info] [61130886] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:31:00 [Info] [61130886] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:31:00 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:01 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:02 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:02 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:02 [Info] [2569506489] v2ray.com/core/proxy/socks: TCP Connect request to tcp:edge.microsoft.com:443
2020/08/15 21:31:02 [Info] [2569506489] v2ray.com/core/app/dispatcher: sniffed domain: edge.microsoft.com
2020/08/15 21:31:02 tcp:127.0.0.1:57721 accepted tcp:edge.microsoft.com:443 [proxy] 
2020/08/15 21:31:02 [Info] [2569506489] v2ray.com/core/app/dispatcher: default route for tcp:edge.microsoft.com:443
2020/08/15 21:31:02 [Info] [2569506489] v2ray.com/core/common/mux: dispatching request to tcp:edge.microsoft.com:443
2020/08/15 21:31:02 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:03 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:03 [Info] [786077850] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:03 [Info] [61130886] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:03 [Info] [3760977823] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:03 [Info] [786077850] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:03 [Info] [61130886] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:03 [Info] [3760977823] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:03 [Info] [2618254629] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com.hk:443
2020/08/15 21:31:03 [Info] [2529022497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:03 [Info] [2618254629] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com.hk
2020/08/15 21:31:03 [Info] [2618254629] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com.hk:443
2020/08/15 21:31:03 [Info] [2618254629] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com.hk:443
2020/08/15 21:31:03 tcp:127.0.0.1:57724 accepted tcp:www.google.com.hk:443 [proxy] 
2020/08/15 21:31:03 [Info] [2529022497] v2ray.com/core/app/dispatcher: sniffed domain: suggestion.baidu.com
2020/08/15 21:31:03 [Info] [2529022497] v2ray.com/core/app/dispatcher: default route for tcp:suggestion.baidu.com:443
2020/08/15 21:31:03 [Info] [2529022497] v2ray.com/core/common/mux: dispatching request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:03 tcp:127.0.0.1:57725 accepted tcp:suggestion.baidu.com:443 [proxy] 
2020/08/15 21:31:03 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:03 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:04 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:05 [Info] [2160353652] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:31:05 tcp:127.0.0.1:57729 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:31:05 [Info] [2160353652] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:31:05 [Info] [2160353652] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:31:05 [Info] [2160353652] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:31:05 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:05 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:06 [Info] [2569506489] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:06 [Info] [2618254629] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:06 [Info] [2618254629] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:06 [Info] [2529022497] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:06 [Info] [2160353652] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:06 [Info] [2569506489] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:06 [Info] [2160353652] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:06 [Info] [2529022497] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:06 [Info] [1904915357] v2ray.com/core/proxy/socks: TCP Connect request to tcp:edge.microsoft.com:443
2020/08/15 21:31:06 [Info] [1904915357] v2ray.com/core/app/dispatcher: sniffed domain: edge.microsoft.com
2020/08/15 21:31:06 [Info] [1904915357] v2ray.com/core/app/dispatcher: default route for tcp:edge.microsoft.com:443
2020/08/15 21:31:06 [Info] [1904915357] v2ray.com/core/common/mux: dispatching request to tcp:edge.microsoft.com:443
2020/08/15 21:31:06 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:06 tcp:127.0.0.1:57731 accepted tcp:edge.microsoft.com:443 [proxy] 
2020/08/15 21:31:06 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:07 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:07 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:08 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:09 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:09 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:10 [Info] [4023704130] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:31:10 [Info] [4023704130] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:31:10 [Info] [4023704130] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:31:10 [Info] [4023704130] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:31:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:10 tcp:127.0.0.1:57737 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:31:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:10 [Info] [1904915357] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:10 [Info] [1904915357] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:11 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:11 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:12 [Info] [825603152] v2ray.com/core/proxy/socks: TCP Connect request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:12 tcp:127.0.0.1:57743 accepted tcp:suggestion.baidu.com:443 [proxy] 
2020/08/15 21:31:12 [Info] [825603152] v2ray.com/core/app/dispatcher: sniffed domain: suggestion.baidu.com
2020/08/15 21:31:12 [Info] [825603152] v2ray.com/core/app/dispatcher: default route for tcp:suggestion.baidu.com:443
2020/08/15 21:31:12 [Info] [825603152] v2ray.com/core/common/mux: dispatching request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:12 [Info] [3186972512] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com.hk:443
2020/08/15 21:31:12 tcp:127.0.0.1:57744 accepted tcp:www.google.com.hk:443 [proxy] 
2020/08/15 21:31:12 [Info] [3186972512] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com.hk
2020/08/15 21:31:12 [Info] [3186972512] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com.hk:443
2020/08/15 21:31:12 [Info] [3186972512] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com.hk:443
2020/08/15 21:31:12 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:12 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:13 [Info] [3186972512] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:13 [Info] [825603152] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:13 [Info] [3186972512] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:13 [Info] [4023704130] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:13 [Info] [825603152] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:13 [Info] [4023704130] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:13 [Info] [2171957561] v2ray.com/core/proxy/socks: TCP Connect request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:13 [Info] [3212343560] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com.hk:443
2020/08/15 21:31:13 [Info] [2171957561] v2ray.com/core/app/dispatcher: sniffed domain: suggestion.baidu.com
2020/08/15 21:31:13 [Info] [2171957561] v2ray.com/core/app/dispatcher: default route for tcp:suggestion.baidu.com:443
2020/08/15 21:31:13 tcp:127.0.0.1:57745 accepted tcp:suggestion.baidu.com:443 [proxy] 
2020/08/15 21:31:13 [Info] [2171957561] v2ray.com/core/common/mux: dispatching request to tcp:suggestion.baidu.com:443
2020/08/15 21:31:13 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:13 tcp:127.0.0.1:57746 accepted tcp:www.google.com.hk:443 [proxy] 
2020/08/15 21:31:13 [Info] [3212343560] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com.hk
2020/08/15 21:31:13 [Info] [3212343560] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com.hk:443
2020/08/15 21:31:13 [Info] [3212343560] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com.hk:443
2020/08/15 21:31:14 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:14 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:14 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:15 [Info] [379137428] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:31:15 [Info] [379137428] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:31:15 tcp:127.0.0.1:57751 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:31:15 [Info] [379137428] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:31:15 [Info] [379137428] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:31:15 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:16 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:16 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:17 [Info] [379137428] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:17 [Info] [3212343560] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:17 [Info] [379137428] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:17 [Info] [2171957561] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled
2020/08/15 21:31:17 [Info] [3212343560] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:17 [Info] [2171957561] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe
2020/08/15 21:31:20 [Info] [3702127431] v2ray.com/core/proxy/socks: TCP Connect request to tcp:10.0.0.1:80
2020/08/15 21:31:20 [Info] [3702127431] v2ray.com/core/app/dispatcher: sniffed domain: 10.0.0.1
2020/08/15 21:31:20 [Info] [3702127431] v2ray.com/core/app/dispatcher: default route for tcp:10.0.0.1:80
2020/08/15 21:31:20 [Info] [3702127431] v2ray.com/core/common/mux: dispatching request to tcp:10.0.0.1:80
2020/08/15 21:31:20 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:20 tcp:127.0.0.1:57754 accepted tcp:10.0.0.1:80 [proxy] 
2020/08/15 21:31:20 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:20 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:21 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:22 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:my.domain:443
2020/08/15 21:31:23 [Warning] failed to handler mux client connection > v2ray.com/core/proxy/vless/outbound: failed to find an available destination > v2ray.com/core/common/retry: [v2ray.com/core/transport/internet/websocket: failed to dial WebSocket > v2ray.com/core/transport/internet/websocket: failed to dial to (wss://my.domain/mypath): 502 Bad Gateway > websocket: bad handshake] > v2ray.com/core/common/retry: all retry attempts failed
2020/08/15 21:31:23 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe
2020/08/15 21:31:23 [Debug] v2ray.com/core/app/log: Logger closing

7) 请附上访问日志。在 Linux 中,日志通常在 /var/log/v2ray/access.log 文件中。

none

8) 其它相关的配置文件(如 Nginx)和相关日志。 nginx 错误日志

2020/08/15 21:30:12 [error] 8011#8011: *12259 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:12 [error] 8011#8011: *12261 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:13 [error] 8011#8011: *12263 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:13 [error] 8011#8011: *12265 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:14 [error] 8011#8011: *12267 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:14 [error] 8011#8011: *12268 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:14 [error] 8011#8011: *12271 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:14 [error] 8011#8011: *12273 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:15 [error] 8011#8011: *12275 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:16 [error] 8011#8011: *12277 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:19 [error] 8011#8011: *12279 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:19 [error] 8011#8011: *12281 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:19 [error] 8011#8011: *12283 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:20 [error] 8011#8011: *12285 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:20 [error] 8011#8011: *12287 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:25 [error] 8011#8011: *12289 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:26 [error] 8011#8011: *12291 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:26 [error] 8011#8011: *12293 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:26 [error] 8011#8011: *12295 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:27 [error] 8011#8011: *12297 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:27 [error] 8011#8011: *12299 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:27 [error] 8011#8011: *12301 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:27 [error] 8011#8011: *12303 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:27 [error] 8011#8011: *12305 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:28 [error] 8011#8011: *12307 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:30 [error] 8011#8011: *12309 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:30 [error] 8011#8011: *12311 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:30 [error] 8011#8011: *12313 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:30 [error] 8011#8011: *12315 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:31 [error] 8011#8011: *12317 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:32 [error] 8011#8011: *12319 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:32 [error] 8011#8011: *12321 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:32 [error] 8011#8011: *12323 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:33 [error] 8011#8011: *12325 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:33 [error] 8011#8011: *12327 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:33 [error] 8011#8011: *12329 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:33 [error] 8011#8011: *12331 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:34 [error] 8011#8011: *12333 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:34 [error] 8011#8011: *12335 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:34 [error] 8011#8011: *12337 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:36 [error] 8011#8011: *12339 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:36 [error] 8011#8011: *12341 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:36 [error] 8011#8011: *12343 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:37 [error] 8011#8011: *12345 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:38 [error] 8011#8011: *12347 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:39 [error] 8011#8011: *12349 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:39 [error] 8011#8011: *12351 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:39 [error] 8011#8011: *12353 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:39 [error] 8011#8011: *12355 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:40 [error] 8011#8011: *12357 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:40 [error] 8011#8011: *12359 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:40 [error] 8011#8011: *12361 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:40 [error] 8011#8011: *12363 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:40 [error] 8011#8011: *12365 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:41 [error] 8011#8011: *12367 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:43 [error] 8011#8011: *12369 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:43 [error] 8011#8011: *12371 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:43 [error] 8011#8011: *12373 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:44 [error] 8011#8011: *12375 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:44 [error] 8011#8011: *12377 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:45 [error] 8011#8011: *12379 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:45 [error] 8011#8011: *12381 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:45 [error] 8011#8011: *12383 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:45 [error] 8011#8011: *12385 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:45 [error] 8011#8011: *12387 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:46 [error] 8011#8011: *12389 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:46 [error] 8011#8011: *12391 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:46 [error] 8011#8011: *12393 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:47 [error] 8011#8011: *12395 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:47 [error] 8011#8011: *12396 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:49 [error] 8011#8011: *12399 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:49 [error] 8011#8011: *12401 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:49 [error] 8011#8011: *12403 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:49 [error] 8011#8011: *12405 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:50 [error] 8011#8011: *12407 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12409 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12411 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12413 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12415 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12418 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12417 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:52 [error] 8011#8011: *12421 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:53 [error] 8011#8011: *12423 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:53 [error] 8011#8011: *12425 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:53 [error] 8011#8011: *12427 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:54 [error] 8011#8011: *12429 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:54 [error] 8011#8011: *12431 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:55 [error] 8011#8011: *12433 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:55 [error] 8011#8011: *12435 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:55 [error] 8011#8011: *12437 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:55 [error] 8011#8011: *12439 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:55 [error] 8011#8011: *12441 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:56 [error] 8011#8011: *12443 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:56 [error] 8011#8011: *12445 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:56 [error] 8011#8011: *12447 connect() failed (111: Connection refused) while connecting to upstream, client: 121.32.193.119, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:58 [error] 8011#8011: *12450 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:58 [error] 8011#8011: *12449 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:58 [error] 8011#8011: *12453 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:58 [error] 8011#8011: *12455 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:59 [error] 8011#8011: *12457 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:59 [error] 8011#8011: *12459 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:59 [error] 8011#8011: *12461 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:30:59 [error] 8011#8011: *12463 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:00 [error] 8011#8011: *12465 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:00 [error] 8011#8011: *12467 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:00 [error] 8011#8011: *12469 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:00 [error] 8011#8011: *12471 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:00 [error] 8011#8011: *12472 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12475 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12477 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12479 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12481 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12483 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:01 [error] 8011#8011: *12485 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12487 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12489 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12490 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12493 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12495 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12497 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:02 [error] 8011#8011: *12499 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:03 [error] 8011#8011: *12502 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:03 [error] 8011#8011: *12501 connect() failed (111: Connection refused) while connecting to upstream, client: 223.104.160.92, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:03 [error] 8011#8011: *12505 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:04 [error] 8011#8011: *12507 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:04 [error] 8011#8011: *12509 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:04 [error] 8011#8011: *12511 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:05 [error] 8011#8011: *12513 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:05 [error] 8011#8011: *12515 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:05 [error] 8011#8011: *12517 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:05 [error] 8011#8011: *12519 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:05 [error] 8011#8011: *12521 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12523 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12525 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12526 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12529 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12531 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:06 [error] 8011#8011: *12533 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:07 [error] 8011#8011: *12535 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:07 [error] 8011#8011: *12537 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:08 [error] 8011#8011: *12539 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:08 [error] 8011#8011: *12541 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:08 [error] 8011#8011: *12543 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:08 [error] 8011#8011: *12545 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:09 [error] 8011#8011: *12547 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:09 [error] 8011#8011: *12549 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:09 [error] 8011#8011: *12551 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:09 [error] 8011#8011: *12553 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:10 [error] 8011#8011: *12555 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12557 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12559 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12561 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12563 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12565 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:11 [error] 8011#8011: *12567 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:12 [error] 8011#8011: *12569 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:12 [error] 8011#8011: *12571 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:12 [error] 8011#8011: *12573 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:12 [error] 8011#8011: *12575 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:13 [error] 8011#8011: *12577 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:13 [error] 8011#8011: *12579 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:13 [error] 8011#8011: *12580 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:13 [error] 8011#8011: *12583 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:14 [error] 8011#8011: *12585 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:14 [error] 8011#8011: *12587 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:14 [error] 8011#8011: *12589 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:14 [error] 8011#8011: *12591 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:15 [error] 8011#8011: *12593 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:15 [error] 8011#8011: *12595 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:15 [error] 8011#8011: *12597 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:17 [error] 8011#8011: *12599 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:17 [error] 8011#8011: *12601 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:18 [error] 8011#8011: *12603 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:18 [error] 8011#8011: *12605 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:18 [error] 8011#8011: *12607 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:18 [error] 8011#8011: *12609 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:18 [error] 8011#8011: *12611 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:19 [error] 8011#8011: *12613 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:19 [error] 8011#8011: *12615 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:19 [error] 8011#8011: *12617 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:19 [error] 8011#8011: *12619 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:19 [error] 8011#8011: *12621 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:20 [error] 8011#8011: *12623 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:20 [error] 8011#8011: *12625 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:21 [error] 8011#8011: *12627 connect() failed (111: Connection refused) while connecting to upstream, client: 122.234.236.236, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:24 [error] 8011#8011: *12629 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:24 [error] 8011#8011: *12631 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:25 [error] 8011#8011: *12633 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:25 [error] 8011#8011: *12635 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:26 [error] 8011#8011: *12637 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:31 [error] 8011#8011: *12639 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:31 [error] 8011#8011: *12641 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:31 [error] 8011#8011: *12643 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:32 [error] 8011#8011: *12645 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:33 [error] 8011#8011: *12647 connect() failed (111: Connection refused) while connecting to upstream, client: 61.153.7.60, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:36 [error] 8011#8011: *12649 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:36 [error] 8011#8011: *12651 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:36 [error] 8011#8011: *12653 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:36 [error] 8011#8011: *12655 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"
2020/08/15 21:31:37 [error] 8011#8011: *12657 connect() failed (111: Connection refused) while connecting to upstream, client: 121.8.170.58, server: my.domain, request: "GET /mypath HTTP/1.1", upstream: "http://127.0.0.1:57033/mypath", host: "my.domain"

nginx访问日志

122.234.236.236 - - [15/Aug/2020:21:30:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:10 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:10 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:15 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:16 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:20 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:20 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:25 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:26 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:26 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:26 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:27 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:27 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:27 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:27 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:27 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:28 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:30 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:30 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:30 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:30 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:31 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:32 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:32 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:32 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:33 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:33 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:33 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:33 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:34 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:34 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:34 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:36 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:36 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:36 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:37 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:38 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:39 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:39 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:39 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:39 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:40 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:40 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:40 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:40 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:40 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:41 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:43 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:43 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:43 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:44 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:30:44 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:45 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:45 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:45 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:45 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:45 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:46 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:46 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:46 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:47 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:47 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:49 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:49 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:49 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:49 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:50 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:52 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:53 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:53 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:53 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:54 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:54 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:55 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:55 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:55 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:55 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:55 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:56 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:56 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.32.193.119 - - [15/Aug/2020:21:30:56 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:58 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:58 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:58 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:58 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:59 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:59 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:30:59 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:30:59 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:00 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:00 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:00 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:00 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:00 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:01 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:02 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:03 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
223.104.160.92 - - [15/Aug/2020:21:31:03 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:03 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:04 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:04 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:04 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:05 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:05 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:05 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:05 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:05 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:06 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:07 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:07 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:08 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:08 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:08 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:08 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:09 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:10 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:11 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:12 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:13 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:14 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:15 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:15 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:15 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:17 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:17 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:18 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:18 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:18 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:18 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:18 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
121.8.170.58 - - [15/Aug/2020:21:31:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:19 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:20 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:20 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
122.234.236.236 - - [15/Aug/2020:21:31:21 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:24 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:24 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:25 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:25 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:26 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:31 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:31 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:31 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:32 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"
61.153.7.60 - - [15/Aug/2020:21:31:33 +0800] "GET /mypath HTTP/1.1" 502 182 "-" "Go-http-client/1.1"

9) 如果 V2Ray 无法启动,请附上 --test 输出。

通常的命令为 /usr/bin/v2ray/v2ray --test --config /etc/v2ray/config.json。请按实际情况修改。

10) 如果 V2Ray 服务运行不正常,请附上 journal 日志。

通常的命令为 journalctl -u v2ray

请预览一下你填的内容再提交。

dev-soragoto commented 4 years ago

补充nginx配置,删除了与v2ray不相关的其他配置

server {
        server_name my.domain;
        listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/my.domain-0001/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/my.domain-0001/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

        location /mypath {
                         proxy_redirect off;
                         proxy_pass http://127.0.0.1:57033;
                         proxy_http_version 1.1;
                         proxy_set_header Upgrade $http_upgrade;
                         proxy_set_header Connection "upgrade";
                         proxy_set_header Host $http_host;
                         proxy_set_header Upgrade "WebSocket";
                         # Show realip in v2ray access.log
                         proxy_set_header X-Real-IP $remote_addr;
                         proxy_intercept_errors on;
                         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                        }

}

server {
    if ($host = my.domain) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

        listen 80;
        server_name my.domain;
        rewrite ^(.*)$ https://${server_name}$1 permanent;

}
RPRX commented 4 years ago

理论上来说,这种情况不会发生(WSS 可以 VMess 却不可以 VLESS)。实际实践中,也没有人反馈过这种情况。

建议确定已严格控制变量,并且多尝试几次。配置文件似乎没有问题(除了注释会破坏 json)。

ghost commented 4 years ago

服务器端配置写错了,"id": "my-uuid"后面多了个逗号,你看看你v2ray服务端有没有在运行。我自己用是没有问题的

RPRX commented 4 years ago

服务器端配置写错了,"id": "my-uuid"后面多了个逗号,你看看你v2ray服务端有没有在运行。我自己用是没有问题的

。。。我本来以为他是发这个 issue 时才注释的,现在想起“服务器端v2ray没有出现日志”,那 100% 是没有在运行了。

dev-soragoto commented 4 years ago

[,"id":"我的-uuid"],[v2ray]我自己用是没有问题的

[,"id":"我的-uuid"],[v2ray]我自己用是没有问题的

。。。[问题],[v2ray]",[100%]

尴尬 一直没想到这一点 刚才journalctl看了眼果然是没有启动 现在已经解决了 总之谢谢了

lxhao61 commented 4 years ago

@soragotosann

另外服务器端,此参数"disableInsecureEncryption": false 也应该不要。此命令是针对VMess协议的。

dev-soragoto commented 4 years ago

@soragotosann

另外服务器端,此参数"disableInsecureEncryption": false 也应该不要。此命令是针对VMess协议的。

嗯嗯 谢谢提醒 删掉了