如何在 aws 经典负载均衡器上重定向 http -> https?

use*_*461 6 https nginx amazon-web-services amazon-elb amazon-elastic-beanstalk

我在 beanstalk 上有一个经典的负载均衡器并配置了 nginx 实例。我想将 http 重定向到 https 请求。

我设置了负载均衡器侦听器以重定向到端口 80 到其实例。

我在 .ebextensions/nginx_config.config 中创建了一个文件,在其中设置了重定向并过滤掉了健康检查。

请参阅下面的配置重写:

files:
   /etc/nginx/conf.d/proxy.conf:
     owner: root
     group: root
     mode: "000644"
     content: |

       upstream nodejs {
           server 127.0.0.1:8081;
           keepalive 256;
       }

       server {
           listen 80;


           if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") {
               set $year $1;
               set $month $2;
               set $day $3;
               set $hour $4;
           }
           access_log /var/log/nginx/healthd/application.log.$year-$month-$day-$hour healthd;
           access_log  /var/log/nginx/access.log  main;


           location / {
               set $redirect 0;
               if ($http_x_forwarded_proto = "http") {
                return 301 https://$host$request_uri;
                }
               if ($http_user_agent ~* "ELB-HealthChecker") {
                 set $redirect 0;
               }
               if ($redirect = 1) {
                 return 301 https://$host$request_uri;
               }

               proxy_pass  http://nodejs;
               proxy_set_header   Connection "";
               proxy_http_version 1.1;
               proxy_set_header        Host            $host;
               proxy_set_header        X-Real-IP       $remote_addr;
               proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
           }

           location /health-check {
            access_log off;
            default_type text/plain;
            return 200 ‘OK’;
           }

       gzip on;
       gzip_comp_level 4;
       gzip_types text/html text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;

       }

   /opt/elasticbeanstalk/hooks/configdeploy/post/99_kill_default_nginx.sh:
     owner: root
     group: root
     mode: "000755"
     content: |
       #!/bin/bash -xe
       rm -f /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf
       if [[ -e /etc/init/nginx.conf ]] ; then
         echo Using initctl to stop and start nginx
         initctl stop nginx || true
         initctl start nginx
       else
         echo Using service to stop and start nginx
         service nginx stop 
         service nginx start
       fi

container_commands:
  removeconfig:
    command: "rm -f /tmp/deployment/config/#etc#nginx#conf.d#00_elastic_beanstalk_proxy.conf /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf"
Run Code Online (Sandbox Code Playgroud)

但似乎什么也没发生,服务器仍然没有重定向到 https。似乎我的配置只是被忽略了。在这种情况下如何重定向到 https?

sog*_*429 0

您可以让负载均衡器使用 ACM 的证书侦听 443,然后将该流量重定向到端口 80?但强烈建议使用 ALB,如上面 @mokugo-devops 所说。希望这可以帮助。您还可以查看类似的问题AWS EB - 将所有流量重定向到 https