设置Elastic Load balancer后,我的https不再起作用了. Nginx错误

前端之家收集整理的这篇文章主要介绍了设置Elastic Load balancer后,我的https不再起作用了. Nginx错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个常规实例,当不在负载均衡器后面时工作正常.
我设置了一个ELB,其中80转发到80和443转发到443和粘性会话.
之后,我转到任何https页面时都会收到此错误.

  1. The plain HTTP request was sent to HTTPS port

我处理在我的Nginx配置中的某些页面上强制https的过程.
为了让这个工作,我需要做什么?我在下面输入我的Nginx配置的准系统版本.

  1. http {
  2. include mime.types;
  3. default_type application/octet-stream;
  4. # Directories
  5. client_body_temp_path tmp/client_body/ 2 2;
  6. fastcgi_temp_path tmp/fastcgi/;
  7. proxy_temp_path tmp/proxy/;
  8. uwsgi_temp_path tmp/uwsgi/;
  9. server {
  10. listen 443;
  11. ssl on;
  12. ssl_certificate ssl.crt;
  13. ssl_certificate_key ssl.key;
  14. server_name www.shirtsby.me;
  15. if ($host ~* ^www\.(.*)) {
  16. set $host_without_www $1;
  17. rewrite ^/(.*) $scheme://$host_without_www/$1 permanent;
  18. }
  19. location ~ ^/(images|img|thumbs|js|css)/ {
  20. root /app/public;
  21. }
  22. if ($uri ~ ^/(images|img|thumbs|js|css)/) {
  23. set $ssltoggle 1;
  24. }
  25. if ($uri ~ "/nonsecure") {
  26. set $ssltoggle 1;
  27. }
  28. if ($ssltoggle != 1) {
  29. rewrite ^(.*)$http://$server_name$1 permanent;
  30. }
  31. location / {
  32. uwsgi_pass unix:/site/sock/uwsgi.sock;
  33. include uwsgi_params;
  34. }
  35. }
  36. server {
  37. listen 80;
  38. server_name www.shirtsby.me;
  39. if ($host ~* ^www\.(.*)) {
  40. set $host_without_www $1;
  41. rewrite ^/(.*) $scheme://$host_without_www/$1 permanent;
  42. }
  43. if ($uri ~ "/secure") {
  44. set $ssltoggle 1;
  45. }
  46. if ($ssltoggle = 1) {
  47. rewrite ^(.*)$https://$server_name$1 permanent;
  48. }
  49. location ~ ^/(images|img|thumbs|js|css)/ {
  50. root /app/public;
  51. }
  52. location / {
  53. uwsgi_pass unix:/home/ubuntu/site/sock/uwsgi.sock;
  54. include uwsgi_params;
  55. }
  56. }
  57. }
最佳答案
结束了在Nginx IRC频道中获得vandemar的答案.
看起来很简单,但我努力搞清楚. ELB正在处理SSL,我已经给了它所有的证书信息.问题是尝试在单个实例或配置文件中再次处理它.
解决方案是从配置文件删除所有SSL内容.
所以删除这三行修复了一切:

  1. ssl on;
  2. ssl_certificate ssl.crt;
  3. ssl_certificate_key ssl.key;

猜你在找的Nginx相关文章