nginx + tomcat 配置,静态资源直接使用nginx myeclipse tomcat配置 tomcat 下载 eclipse配置tomcat
程序员文章站
2022-04-14 23:38:30
...
Java代码
- upstream tomcat_server {
- server 127.0.0.1:8080;
- }
- server {
- listen 80;
- server_name localhost;
- root D:\work\my-project;
- location / {
- index index.jsp;
- }
- location /j_spring_security_check {
- proxy_set_header Host $host;
- proxy_set_header X-Forwarded-For $remote_addr;
- proxy_pass http://tomcat_server;
- }
- location ~ .*\.(jsp|do)$ {
- proxy_set_header Host $host;
- proxy_set_header X-Forwarded-For $remote_addr;
- proxy_pass http://tomcat_server;
- }
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css|html)$ #设定访问静态文件直接读取不经过tomcat
- {
- expires 30d;
- }
- location ~ ^/(WEB-INF)/ { #这个很重要,不然用户就可以访问了
- deny all;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
以上就介绍了nginx + tomcat 配置,静态资源直接使用nginx,包括了tomcat 配置方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
windows下使用nginx配置tomcat集群
-
nginx和tomcat访问图片和静态页面的配置方法
-
Nginx实现多个站点使用一个端口配置Nginx的虚拟主机 nginx tomcat 虚拟主机 nginx 虚拟主机配置 nginx ssl 虚拟主
-
nginx 使用 lets encrypt 配置https nginx tomcat https nginx https 代理 nginx配置https代
-
Nginx loaction配置和Tomcat部署方式 tomcat部署 tomcat使用 tomcat
-
nginx + tomcat 配置,静态资源直接使用nginx myeclipse tomcat配置 tomcat 下载 eclipse配置tomcat
-
nginx 使用 lets encrypt 配置https nginx tomcat https nginx https 代理 nginx配置https代
-
nginx + tomcat 配置,静态资源直接使用nginx myeclipse tomcat配置 tomcat 下载 eclipse配置tomcat
-
nginx和tomcat使用chroot(jail)相关配置
-
关于nginx在tomcat下配置使用