Home  >  Article  >  Operation and Maintenance  >  How to configure tomcat under nginx

How to configure tomcat under nginx

王林
王林forward
2023-05-28 16:43:061296browse

Configuration file example

server
{
    listen 80;
    server_name www.xxx.com;
    
    location ~* "\.(jpg|png|jepg|js|css|xml|bmp|swf|gif|html)$"
    {
        root /data/wwwroot/aminglinux/;
        access_log off;
        expire 7d;
    }
    
    location /
    {
        proxy_pass http://127.0.0.1:8080/;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

Instructions:

  • First, separate the requests for various static files , handled by nginx alone.

  • Other requests directly proxy port 8080, which is the tomcat service.

The above is the detailed content of How to configure tomcat under nginx. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete