DRF: drf_yasg swagger 文档http -> https

烂漫一生 提交于 2020-04-05 15:54:10

drf_yasg 文档https配置

参考

django 配置

settings.py

USE_X_FORWARDED_HOST = True
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

nginx 配置

加入X-Forwarded-Proto在配置中

proxy_set_header X-Forwarded-Proto https

/etc/nginx/conf.d/app_server.conf

    location / {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto https;
        proxy_set_header Host $http_host;
        proxy_redirect off;

        if (!-f $request_filename) {
            proxy_pass http://app_server;
            break;
        }
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!