欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx + tomcat 配置,静态资源直接使用nginx myeclipse tomcat配置 tomcat 下载 eclipse配置tomcat

程序员文章站 2022-05-08 19:29:20
...
Java代码 nginx + tomcat 配置,静态资源直接使用nginx myeclipse tomcat配置 tomcat 下载 eclipse配置tomcat
  1. upstream tomcat_server {
  2. server 127.0.0.1:8080;
  3. }
  4. server {
  5. listen 80;
  6. server_name localhost;
  7. root D:\work\my-project;
  8. location / {
  9. index index.jsp;
  10. }
  11. location /j_spring_security_check {
  12. proxy_set_header Host $host;
  13. proxy_set_header X-Forwarded-For $remote_addr;
  14. proxy_pass http://tomcat_server;
  15. }
  16. location ~ .*\.(jsp|do)$ {
  17. proxy_set_header Host $host;
  18. proxy_set_header X-Forwarded-For $remote_addr;
  19. proxy_pass http://tomcat_server;
  20. }
  21. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css|html)$ #设定访问静态文件直接读取不经过tomcat
  22. {
  23. expires 30d;
  24. }
  25. location ~ ^/(WEB-INF)/ { #这个很重要,不然用户就可以访问了
  26. deny all;
  27. }
  28. error_page 500 502 503 504 /50x.html;
  29. location = /50x.html {
  30. root html;
  31. }
  32. }

以上就介绍了nginx + tomcat 配置,静态资源直接使用nginx,包括了tomcat 配置方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签: tomcat 配置