有没有人能帮我访问 nginx 代理后面的应用程序子文件夹?

有没有人能帮我访问 nginx 代理后面的应用程序子文件夹?

我有两台具有不同 IP 地址的服务器:

  • Tomcat 为我的 web 应用程序提供服务https://app1.domain.com(centos6)
  • Nginx 充当 waf via https://nginx.domain.com(centos7)

Nginx 在端口 443 上运行,我使用它来通过以下方式反向代理我的 web 应用程序:

location /app1/ {
    rewrite ^/app1(.*) /$1 break; 
    proxy_pass https://app1.domain.com/;
}

这样,我就可以正常通过 nginx 访问我的 webapp 了https://nginx.domain.com/app1/

其次,在ROOT我的webapp的文件夹中,我在ROOT/birt-viewer文件夹中安装了birt-viewer应用程序。当我使用链接时,我通常会访问birt-viewer应用程序https://app1.domain.com/birt-viewer

但是,当我使用链接时,我通常不会访问 birt 应用程序https:// nginx.domain.com/app1/birt-viewer。例如,当我复制链接时

/birt-viewer/Task.jsp?__report=Recare.rpgn&sample=my+parameter&__sessionId=2026

并将其粘贴到链接后https://nginx.domain.com/app1以获得最终链接

https://nginx.domain.com/app1/birt-viewer/Task.jsp?__report=Recare.rpgn&sample=my+parameter&__sessionId=2026

我访问了 birt-viewer 应用程序,但丢失了 cookie 和会话等设置。

您知道,要通过 nginx 访问我的 Web 应用,我必须手动操作;缺点是会丢失 cookie、会话和其他参数。但访问应该可以自动完成,不会出现问题。

这是我的 nginx 配置:

user nginxxxx;
worker_processes  1;
error_log /var/log/error.log warn;
pid        logs/nginx.pid;
events {
    worker_connections  1024;
}
http {
#    include mime.types;
    include /opt/nginx/conf/mime.types;    
    include /opt/nginx/conf/naxsi_core.rules;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log /var/log/access.log main;
    sendfile        on;
    tcp_nopush     on;
    keepalive_timeout  65;
    tcp_nodelay on;
    gzip  on;
    gzip_disable "MSIE [1-6].(?!.*SV1)";
    client_max_body_size 100m;
    client_body_buffer_size 10K;

    server {
         listen 443 ssl;
        server_name nginx.domain.com;
    access_log on ;
        access_log /var/log/access.log main;
    error_log on ;
        error_log /var/log/error.log warn;
        ssl_certificate /etc/ssl/certs/m.crt;
        ssl_certificate_key /etc/ssl/private/cs.key;
        ssl_protocols TLSv1.2 TLSv1.3;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;
        add_header Strict-Transport-Security "max-age=63072000; includeSubdomains;" always;
        add_header X-Frame-Options SAMEORIGIN;
        add_header X-Content-Type-Options nosniff;
        add_header X-XSS-Protection "1; mode=block";
    error_page 403 /403_error.html;
        location = /403_error.html {
            root /usr/share/nginx/htmml;
            internal;
        }

    error_page 404 /404_error.html;
        location = /404_error.html {
            root /usr/share/nginx/html;
            internal;
        }


 location /app1/
         {
rewrite ^/app1(.*) /$1 break;
proxy_connect_timeout 60000;
proxy_send_timeout 60000;
proxy_read_timeout 60000;
send_timeout 60000;
proxy_pass https://app1.domain.com/;
   }

location /app1/birt-viewer/ {
    rewrite ^/app1/folder1(.*) /$1 break; 
    proxy_pass https:// app1.domain.com/birt-viewer/;
}

           }

}

我还意识到,一旦我的 webapp 位于 nginx 后面,一些 url 就不是最新的,并且仍然保留旧的访问权限。

所以我关心的是通过 nginx 自动(而不是手动)访问 birt-viewer 应用程序https://nginx.domain.com/app1/birt-viewer

有人能帮我解决吗?

相关内容