将http://172.30.203.129:4850/ 通过nginx代理变成textocr-uat.sunwoda.com访问,https协议
时间: 2023-12-13 14:03:22 浏览: 114
centos7安装rtmp所需软件,对应教程 https://bxoon.blog.csdn.net/article/detai
要将 `http://172.30.203.129:4850/` 通过 Nginx 代理变成使用 HTTPS 协议的textocr-uat.sunwoda.com` 访问,你可以按照以下步骤进行操作:
1. 确保你已经将 `textocr-uat.sunwoda.com` 这个域名解析到了正确的 IP 地址上,并且已经获取了有效的 SSL 证书和私钥。
2. 安装和配置 Nginx。确保你已经安装了 Nginx 并且正确配置了其基本设置。
3. 创建一个新的服务器块或编辑默认服务器块的配置文件。可以在 Nginx 配置文件的 `sites-available` 目录中创建一个新的配置文件,或者直接编辑默认配置文件。
4. 在服务器块中添加以下内容来配置反向代理和 SSL:
```nginx
server {
listen 443 ssl;
server_name textocr-uat.sunwoda.com;
ssl_certificate /path/to/ssl_certificate.crt;
ssl_certificate_key /path/to/ssl_private_key.key;
location / {
proxy_pass http://172.30.203.129:4850/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
```
请将 `/path/to/ssl_certificate.crt` 替换为你的 SSL 证书公钥文件的路径,将 `/path/to/ssl_private_key.key` 替换为你的 SSL 证书私钥文件的路径。
5. 添加一个额外的服务器块来重定向 HTTP 请求到 HTTPS。将以下内容添加到 Nginx 配置文件中:
```nginx
server {
listen 80;
server_name textocr-uat.sunwoda.com;
return 301 https://textocr-uat.sunwoda.com$request_uri;
}
```
6. 保存并退出配置文件,然后重新加载 Nginx 配置以应用更改。
7. 检查防火墙设置,确保允许通过所选端口(通常是 80 和 443)的流量。
现在,你应该能够通过使用 HTTPS 访问 `https://textocr-uat.sunwoda.com` 来代理访问 `http://172.30.203.129:4850/` 的内容了。
阅读全文