Home >Operation and Maintenance >Nginx >How to configure tomcat under nginx
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!