简体   繁体   English

如何将任何 api 请求从 http 重定向到 Z2B9AFB89A6ACC1575B159BFCA38D1 中的 https?

[英]how to redirect any api request from http to https in django?

after migrating my Django web app from HTTP to https, when I type将我的 Django web 应用程序从 HTTP 迁移到 Z5E056C500A1C4B6A7110BADE50D 后

for example r= requests.get('http://xxxx.com')例如r= requests.get('http://xxxx.com')

it gives me this error:它给了我这个错误:

requests.exceptions.SSLError: HTTPSConnectionPool(host=my_host_name,port:443)  Max retries exceeded with url:http://xxxx.com (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)'),))

but I made the nginx config for the redirection for example when I put any HTTP address on my browser it redirects me to the correct https address.但是我为重定向设置了 nginx 配置,例如,当我在浏览器上放置任何 HTTP 地址时,它会将我重定向到正确的 https 地址。

I would like to do the same thing on the API request.我想对 API 请求做同样的事情。

I don't like to change my requests addresses on my backend code I just want to redirect the HTTP requests to https if it is possible?我不想更改后端代码上的请求地址我只想将 HTTP 请求重定向到 https 如果可能的话?

my nginx config:我的 nginx 配置:

http {

  sendfile on;
  tcp_nopush on;
  tcp_nodelay on;
  keepalive_timeout 65;
  types_hash_max_size 2048;
  proxy_cache_path /path/cache keys_zone=cache:10m levels=1:2 inactive=600s 
  max_size=100m;
  default_type application/octet-stream;


    log_format compression '$remote_addr - $remote_user [$time_local] '
                           '"$request" $status $body_bytes_sent '
                           '"$http_referer" "$http_user_agent" "$gzip_ratio"';

  access_log /path/access.log;
  error_log /Path/error.log error;
  gzip on;
  gzip_disable "msie6";
  text/xml application/xml application/xml+rss text/javascript;

  upstream app_servers {

    server 127.0.0.1:8080;
  }

  server {

    listen 443  ssl http2;
    listen [::]:443 ssl http2;
    ssl on;
    ssl_certificate /PATH/certificate.crt;
    ssl_certificate_key /PATH/certificate.key;
    proxy_cache cache;
    proxy_cache_valid 200 1s;
    #ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
    server_name  my_host_name;
    access_log /path/nginx-access.log compression;
    location /static/  {
       alias /path/static/;

 }

location /nginx_status {
        stub_status on;
        allow all;
        deny all;
}

    location / {
      proxy_pass         http://127.0.0.1:8000;
      proxy_set_header   Host $host;
      proxy_pass_request_headers on;
      proxy_read_timeout 1200;
      proxy_set_header   X-Real-IP $remote_addr;
      proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header   X-Forwarded-Host $server_name;
    }
 }
 server {
   listen 9999 ;
   server_name my_host_name ;
   return 307 https://my_domain.com$request_uri;
}
}

The error kind of puzzles me, but in you Nginx config file, I see that you're not listening on the default HTTP port.这种错误让我感到困惑,但是在您的 Nginx 配置文件中,我看到您没有在默认的 HTTP 端口上监听。 You should add a server block that listens on the HTTP (80) port, and redirect to https (443) from there.您应该添加一个侦听 HTTP (80) 端口的服务器块,并从那里重定向到 https (443)。

Add this block inside your http:在您的 http 中添加此块:

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name  my_host_name;
    return 301 https://$host$request_uri;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM