gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 14:42:33 26 4
gpt4 key购买 nike

我在 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"

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

最佳答案

所以按照我上面的建议。创建具有 2 个监听器的应用程序负载均衡器。

1st Listener 是一个 443 HTTPS 监听器,可直接为您的目标群体提供流量。

第二个监听器是一个 80 HTTP 监听器,它使用 redirect rule这会重定向到 HTTPS。

这是最佳实践。

关于amazon-web-services - 如何在 aws 经典负载均衡器上重定向 http -> https?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61669242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com