连接阿里云服务器上的网页Invalid Host header

前端通过地址 http://gpthoodreoms.cn:80访问

阿里云服务器nginx配置如下

server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
	

	    location / {
          proxy_pass http://localhost:8080;  # 前端服务器域名和端口 
        }

        location /api/ {
          proxy_pass http://gpthrrdreoms.cn:8886/;   # 后端服务器域名和端口
          proxy_set_header Host $proxy_host;
        } 	

    }

你可能感兴趣的:(前端,服务器)