centos65 nginx+tomcat部署
程序员文章站
2022-04-17 09:24:26
...
server { listen 80; server_name localhost; index index.html index.htm index.jsp; #设定访问的默认首页地址 root /www/demon;#设定网站的资源存放路径 #charset koi8-r; #access_log logs/host.access.log main; #location / { # root html; # index index.html index.htm; #} location ~ .*.jsp$ { #所有jsp的页面均交由tomcat处理 index index.jsp; proxy_pass http://localhost:8080; #转向tomcat处理 } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ #设定访问静态文件直接读取不经过tomcat { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; } }
编辑Nginx安装目录下conf文件夹中的nginx.conf
以上就介绍了centos65 nginx+tomcat部署,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
mongodb分布式部署(mongodb三种部署方式)
-
使用Git实现Laravel项目的自动化部署
-
Docker部署Python爬虫项目的方法步骤
-
使用PyCharm配合部署Python的Django框架的配置纪实
-
Spring boot项目部署到云服务器小白教程详解
-
vue-cli整合vuex的时候,修改actions和mutations,实现热部署的方法
-
使用FastCGI部署Python的Django应用的教程
-
ASP.NET Core 1.0 部署 HTTPS(.NET Core 1.0)
-
在主机商的共享服务器上部署Django站点的方法
-
Spring Boot打包部署和环境配置详解