1

我有一个反向代理,Nginx 在端口 5000 上运行,我想将所有进入端口 5000 的请求作为 https 请求重定向。

现在我收到错误:400 Bad Request The plain HTTP request was sent to HTTPS port

server {
           listen 5000 ssl;
           server_name myserver.com;

           location / {
               proxy_pass                 http://127.0.0.1:8080;
               proxy_set_header           X-Real-IP   $remote_addr;
               proxy_set_header           X-Forwarded-For  \$proxy_add_x_forwarded_for;
               proxy_set_header           X-Forwarded-Proto  $scheme;
               proxy_set_header           X-Forwarded-Server  $host;
               proxy_set_header           X-Forwarded-Host  $host;
               proxy_set_header           Host  $host:5000;


               add_header 'Access-Control-Allow-Methods' 'GET, POST';
               add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type';
               add_header 'Access-Control-Allow-Credentials' 'true';

               # here comes the basic auth, after the options part
               auth_basic            'Restricted';
               auth_basic_user_file  path/to/.htpasswd;

           }

           ssl    on;
           ssl_certificate    path/to/crt;
           ssl_certificate_key    path/to/key;
       }

好吧,我尝试添加

 if ($scheme != "https") {
    rewrite ^ https://$host$request_uri permanent;
 }

 if ($scheme != "https") {
     return 301 https://$host$request_uri permanent;
 }

似乎没有什么能解决问题。我应该怎么做才能解决这个问题?

4

3 回答 3

5

假设 http 流量来自端口 80,您可以通过添加一个额外的服务器块监听此端口来重定向到 https:

server {
    listen 80;
    server_name myserver.com;

    location / {
        return 301 https://myserver.com$request_uri;
    }
}
于 2017-09-13T14:39:41.847 回答
0

好吧,使用 error_page 似乎对我有用。

  server {
       listen 5000 ssl;
       server_name myserver.com;
       error_page 497 https://$host:5000$request_uri;
       ..
       ..
    }

要了解有关 497 的更多信息,请查看http://nginx.org/en/docs/http/ngx_http_ssl_module.html中的“错误处理”部分

于 2017-09-22T12:48:44.533 回答
0

这听起来可能很简单,但是您是否尝试过在您输入的域名前面添加“https://”?我发现默认总是一个普通的“http”请求。

于 2017-09-13T14:26:25.327 回答