AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题 / 1156490
Accepted
Kendrick
Kendrick
Asked: 2024-03-19 13:10:21 +0800 CST2024-03-19 13:10:21 +0800 CST 2024-03-19 13:10:21 +0800 CST

Nginx 能否为不兼容 TLS 1.3 的客户端将 TLS 1.0 转换为 1.3?

  • 772

我的旧设备不支持 TLS 或仅支持 TLS 1.0。

Nginx 能否在这些仅使用 HTTP 或 TLS 1.0 的不兼容设备与使用 TLS 1.3 的端点之间进行转换?

nginx
  • 1 1 个回答
  • 64 Views

1 个回答

  • Voted
  1. Best Answer
    djdomi
    2024-03-28T16:30:03+08:002024-03-28T16:30:03+08:00

    简短而肮脏的答案:

    是的,可以,但是你应该淘汰这些旧设备。Nginx 不关心超出它的内容,即使它是默认配置中有效或无效的 SSL 证书。

    配置示例:

    server {
            server_name tld.domain.it;
            access_log /var/log/nginx/tld.domain.it.access.log;
            error_log /var/log/nginx/tld.domain.it.error.log;
            listen [::]:443 ssl ;
            listen 443 SSL ;
            #Useful for the old site
            proxy_no_cache 1;
            proxy_cache_bypass 1;
            
            #For reaaaly old broken stuff, force IE-Emulation Mode (may help)
            #add_header ‘X-UA-Compatible’ ‘IE=EmulateIE7’;
            
            #Force tls1
            #proxy_ssl_protocols TLSv1
    
            # I prefer to log also rewrite
            rewrite_log on;
            proxy_pass                              https://127.0.0.1:12345;
            proxy_set_header                        Host $http_host;
    
        }
    
        ssl_certificate /etc/letsencrypt/live/exmaple.it/fullchain.pem; 
        ssl_certificate_key /etc/letsencrypt/live/example.it/privkey.pem; 
    
    
    }
    

    参考

    https://docs.nginx.com/nginx/admin-guide/security-controls/secure-http-traffic-upstream/ https://docs.nginx.com/nginx/admin-guide/web-server/reverse-代理/ https://nginx.org/en/docs/http/ngx_http_proxy_module.html

    • 2

相关问题

  • Gzip 与反向代理缓存

  • nginx 作为代理的行为

  • Nginx 学习资源 [关闭]

  • 提供 70,000 个静态文件 (jpg) 的最佳方式?

  • 在 Apache、LightTPD 和 Nginx Web 服务器上提供 PHP 5.x 应用程序的现状?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve