nginx reverse proxy with Windows authentication that uses NTLM

前端 未结 5 2041
广开言路
广开言路 2020-12-29 10:16

Anyone knows if is possible to do reverse proxy with Windows authentication that uses NTLM? I cant find any example on this. What should be the values of more_set_headers fi

5条回答
  •  一个人的身影
    2020-12-29 10:44

    To enable NTLM pass-through with Nginx -

    upstream http_backend {
        server 2.3.4.5:80;
        keepalive 16;
    }
    server {
        ...
        location / {
           proxy_pass http://http_backend/;
           proxy_http_version 1.1;
           proxy_set_header Connection "";
        ...
        }
     }
    

    -- Ramon

提交回复
热议问题