gpt4 book ai didi

Django + uWSGI + Nginx + SSL - 工作配置请求(强调 SSL)

转载 作者:太空宇宙 更新时间:2023-11-03 12:39:33 26 4
gpt4 key购买 nike

有人有这四个的工作配置吗?

- Django
- uWSGI
- Nginx
- SSL

主要问题是如何为此正确设置SSL?我在谷歌上搜索了很多,但仍然无法正常工作。我有一个使用 unix socketshttp 工作设置,但这是我所能得到的。

发布了一些其他答案,但它们主要是代码片段,而不是整个配置。

最佳答案

server {
listen 80;
server_name example.com;
rewrite ^/(.*) https://example.com/$1 permanent;
}

server {
listen 443 ssl;
server_name example.com;
access_log /var/log/nginx/example.com_access.log combined;
error_log /var/log/nginx/example.com_error.log error;

ssl_certificate /etc/nginx/ssl/example-unified.crt;
ssl_certificate_key /etc/nginx/ssl/example.key;

location /static/ {
alias /webapps/example/static/;
}

location /media/ {
alias /webapps/example/media/;
}

location / {
proxy_pass http://localhost:8000/;
proxy_redirect off;

proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

}

这是基本的 nginx 配置,它将与 SSL 一起工作,并将请求转发到在端口 8000 上运行的 uwsgi(如果需要,您可以将其更改为套接字)。

高级 SSL 设置检查 THIS .

关于Django + uWSGI + Nginx + SSL - 工作配置请求(强调 SSL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29827299/

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