gpt4 book ai didi

ubuntu - 将 VPS 上的 nginx 从 http 转换为 https

转载 作者:太空宇宙 更新时间:2023-11-03 13:59:51 24 4
gpt4 key购买 nike

我已与 a2 共享主机。我在那里有一个域,该域具有 SSL 证书。

现在我将此域指向运行 Ubuntu + nginx 的 Vultr VPS,但它没有 SSL。

所以我基本上想要:

https://mya2hostingdomain.com -> https://10.10.10.10

目前

http://mya2hostingdomain.com -> http://10.10.10.10

工作正常。

我不确定该怎么做?我是以某种方式从 A2 复制证书还是必须在 linux 机器上重新生成新证书?

不确定该怎么做。

最佳答案

如果我对你的问题的理解正确,一个简单的反向代理配置应该可以工作。这是一个示例虚拟主机:

server {
server_name mya2hostingdomain.com;

listen 443 ssl;
ssl_certificate /etc/ssl/certs/mya2hostingdomain.com.crt;
ssl_certificate_key /etc/ssl/private/mya2hostingdomain.com.key;

location / {
include /etc/nginx/proxy_params;
proxy_pass http://10.10.10.10;
}
}

关于ubuntu - 将 VPS 上的 nginx 从 http 转换为 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54573529/

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