在nginx代理后面的glassfish中的持久会话

时间:2015-06-02 12:27:41

标签: java session nginx proxy glassfish

我正在运行nginx代理(解析域)后面的glassfish网络服务器。我想在Web服务器上存储@SessionScoped数据。 我的问题是,每次连接到glassfish时,nginx都会打开一个新会话,并且该会话无法连接到客户端。客户端本身在nginx上有一个活动会话。

Glassfish似乎意识到这样一个事实,即处理会话的方式有问题。它操纵应用程序中的链接以保持会话完整: ” ... / ProxyTest / page2.jsf; JSESSIONID = 4372da9b75a2043875c73b12f998" 如果我直接连接到网络服务器(没有代理),它不会这样做 这种行为对我来说是完全不可接受的,我需要那种操纵,但仍然有会话。

我希望通过代理连接到每个用户的glassfish上有一个单独的持久会话,而不必在URL中传递sessionID。

nginx会设置cookie,但浏览器不会将其发回。我假设cookie格式正确:

Set-Cookie:"JSESSIONID=84c5e4e43538da045cc1d8f2a629; Path=/ProxyTest; HttpOnly"

我的nginx设置:     服务器{         听80;         server_name www.abc.ch;

location / {
    proxy_set_header customer abc;
    access_log off;
    proxy_pass http://127.0.0.1:8081/ProxyTest/;
    proxy_set_header Host $host;
    proxy_redirect     off;
    proxy_set_header X-Real-IP $remote_addr;
}

}

server {
    listen       80;
    server_name  www.onlineshop.ch;

location / {
    proxy_set_header customer onlineshop;
    access_log off;
    proxy_pass http://127.0.0.1:8081/ProxyTest/;
    proxy_set_header Host $host;
    proxy_redirect     off;
    proxy_set_header X-Real-IP $remote_addr;

}

现在的问题是,浏览器没有发回cookie,或者由于某种原因它没有进入服务器。在每个请求中,服务器都会生成一个新的会话ID。确认存储在@SessionScoped bean中的数据会丢失。

1 个答案:

答案 0 :(得分:0)

如果您发布NGINX代理配置,会有所帮助。基本的反向代理配置如下所示:

...
http {
    ....
    server {
        listen       80;
        server_name  www.yourdomain.com;

        location / {
            access_log off;
            proxy_pass http://127.0.0.1:8080;
            proxy_set_header Host $host;
            proxy_redirect     off;
            proxy_set_header X-Real-IP $remote_addr;
            ...
        }
        ....
    }
}