域名与后端绑定

server {
        listen 443 ssl;
        server_name example.com;

        ssl_certificate /path/to/cert.pem;
        ssl_certificate_key /path/to/key.pem;

        location / {
            proxy_pass http://backend;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
        }
    }

同一个端口绑定不同域名不同后端可以在同一个conf文件写两个“server”,实测可以正常区分识别

标签: none

已有 2 条评论

  1. 你的才华让人惊叹,你是我的榜样。 https://www.4006400989.com/qyvideo/63855.html

  2. 探秘传奇私服:为何启动按钮失效之谜:https://501h.com/lianji/2024-09-08/33646.html

添加新评论