share cookies between servers
David Ni
zn1314 at 126.com
Thu Jan 10 09:14:17 UTC 2019
Hi Experts,
I have one requirement right now,we are using nginx with ldap auth,and I create many servers like datanode02.bddev.test.net datanode03.bddev.test.net,so if I access these servers ,we need to input the correct username and password which stored in ldap,my requirement is that whether datanode02.bddev.test.net datanode03.bddev.test.net can share cookies between each other,so that if I have accessed datanode02.bddev.test.net successfully,I don't need to input username and password when I access datanode03.bddev.test.net ,is this possible? If possible,how to achieve this?Thanks very much!
server {
listen 80;
server_name datanode02.bddev.test.net;
error_log /var/log/nginx/error_for_bigdata.log info;
access_log /var/log/nginx/http_access_for_bigdata.log main;
auth_ldap "Restricted Space";
auth_ldap_servers bigdataldap;
location / {
proxy_pass http://dev-datanode02:8042/;
more_clear_headers "X-Frame-options";
sub_filter dev-resourcemanager01:8088 resourcemanager01rsm.bddev.test.net:80;
sub_filter dev-historyserver01:8088 historyserver01rsm.bddev.virtueit.net:80;
sub_filter dev-historyserver01:19888 historyserver01ht.bddev.virtueit.net:80;
sub_filter_types *;
sub_filter_once off;
}
}
server {
listen 80;
server_name datanode03.bddev.test.net;
error_log /var/log/nginx/error_for_bigdata.log info;
access_log /var/log/nginx/http_access_for_bigdata.log main;
auth_ldap "Restricted Space";
auth_ldap_servers bigdataldap;
location / {
proxy_pass http://dev-datanode03:8042/;
more_clear_headers "X-Frame-options";
sub_filter dev-resourcemanager01:8088 resourcemanager01rsm.bddev.test.net:80;
sub_filter dev-historyserver01:8088 historyserver01rsm.bddev.virtueit.net:80;
sub_filter dev-historyserver01:19888 historyserver01ht.bddev.virtueit.net:80;
sub_filter_types *;
sub_filter_once off;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20190110/378ee323/attachment.html>
More information about the nginx
mailing list