如何配置Glassfish NGINX使用NGINX提供静态文件?

我有一个EC2 ubuntu和Glassfish v3 Nginx设置来托管我的java web应用程序.此应用程序作为WAR文件部署到Glassfish. NGINX当前将所有请求传递给glasshfish appserver,包括静态图像,css等javascripts等.server { listen 80; server_name what

我有一个EC2 ubuntu和Glassfish v3 Nginx设置来托管我的java web应用程序.此应用程序作为WAR文件部署到Glassfish. NGINX当前将所有请求传递给glasshfish appserver,包括静态图像,css等javascripts等.

server {
  listen  80;
  server_name whatever.com www.whatever.com;

  access_log  /var/log/nginx/whatever.com.access.log;

  location / {
    proxy_pass  http://127.0.0.1:8080/javapp/;
    proxy_pass_header Set-Cookie;
    proxy_pass_header X-Forwarded-For;
    proxy_pass_header Host;
  }

}
最佳答案
我已经解决了这个问题如下
a)修改配置文件,如下所示

server {

        listen   80; ## listen for ipv4
        server_name  www.whatever.com; ## change this to your own domain name
    root   /home/ubuntu/www/public_html;
## Only requests to our Host are allowed i.e. nixcraft.in,images.nixcraft.in and www.nixcraft.in
      if ($host !~ ^(www.whatever.com)$) {
         return 444;
      }


    location ~* \.(jpg|jpeg|gif|css|png|js|ico)${
        access_log off;
        expires max;
    }

    location / {
        access_log off;
        proxy_pass http://localhost:8080;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
                root   /var/www/nginx-default;
        }


}

b)在Nginx HTML根目录下(/ home / ubuntu / www / public_html)创建一个与web应用程序上下文同名的子目录.例如如果你的webpp网址是www.whatever.com/mycoolapp,请创建一个名为/ home / ubuntu / www / public_html / mycoolapp的目录

c)将war文件解压缩到此文件夹.摆脱WEB-INF文件夹

d)重启nginx.要验证,请停止您的Web应用程序,同时保持NGINX并从您的webapp访问图像或css.

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部