nginx代理frps后出现 http proxy request error: no such domain

Posted 久天.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx代理frps后出现 http proxy request error: no such domain相关的知识,希望对你有一定的参考价值。

nginx反向代理少了这个:

proxy_set_header Host $host;

fprs的服务器上的nginx 配置改为

server {
  listen 80;
  server_name _;
  index index.htm index.html;

  location / {
    proxy_pass http://frps;
    proxy_set_header Host $host;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    error_log  /var/log/nginx/frps.error.log;
    access_log  /var/log/nginx/frps.access.log;
  }
}

 

以上是关于nginx代理frps后出现 http proxy request error: no such domain的主要内容,如果未能解决你的问题,请参考以下文章

websocket使用nginx代理后连接频繁打开和关闭

Nginx正向代理配置

nginx负载均衡后端tomcat无法加载js资源

ngxin常用配置--nginx之proxy_pass代理后端https请求完全解析

nginx做反向代理负载均衡 Java怎么获取后端服务器获取用户IP

nginx 正向代理