Hi all,


I am testing ntlm for a reverse proxy secanrio.



Info:

http://nginx.org/en/docs/http/ngx_http_upstream_module.html#ntlm 
<http://nginx.org/en/docs/http/ngx_http_upstream_module.html#ntlm> 



this is my config:


upstream http_backend {
    server 127.0.0.1:8080;

    ntlm;
}

server {
           listen 443;
        ...

    location /http/ {
        proxy_pass http://http_backend; <http://http_backend;> 
        proxy_http_version 1.1;
        proxy_set_header Connection "";
        ...
    }
}

I always get this error:

nginx: [emerg] unknown directive "ntlm" in /etc/nginx/conf.d/test.conf:4



This is my version:

nginx version: nginx/1.12.2



What do I make wrong? Since version 1.9.2 this option should be possible.



Thanks,

Otto
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to