zoukankan      html  css  js  c++  java
  • java源码部署

    环境:nginx+tomcat
    部署方式:源码部署
    源码目录
    /chroot2/test/schedule 目录下面就是所有源码了
    tomcat
    位置: /usr/local/tomcat/apache-tomcat-scheduleweb-test
    主要配置文件server.xml
    <Host name="localhost" appBase="/chroot2/test/schedule" deployOnStartup ="false" autoDeploy="false" unpackWARs="true">
    <Context path="/schedule" docBase="."/>
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="schedule-web-test.cn-access_log." suffix=".log"
    pattern="common" resolveHosts="false"/>
    </Host>
    主要注意: <Context path="/schedule" docBase="."/>的配置
    nginx配置
    upstream配置:
    upstream tomcat_schedule_web_test{
    server localhost:8291 weight=10;
    }

    server配置:
    server
    {
    listen 80;
    server_name test.schedule.toys178.com;
    index index.jsp index.htm index.php;
    root /chroot2/test;

    fastcgi_connect_timeout 600;
    fastcgi_send_timeout 600;
    fastcgi_read_timeout 600;


    location /schedule {
    proxy_pass http://tomcat_schedule_web_test;
    }

    location ~ .*.(gif|jpg|jpeg|png|bmp|swf|apk|tar.gz)$
    {
    expires 30d;
    }

    location ~ .*.(js|css)?$
    {
    expires 12h;
    }
    access_log /chroot/wwwlogs/tomcat_schedule_web_test-access.log access;
    }

    部署方式:war包部署
    war包目录
    /chroot2/test/schedule 目录下面放的是war包,如:ScheduleManage.war
    tomcat
    位置: /usr/local/tomcat/apache-tomcat-scheduleweb-test
    主要配置文件server.xml
    <Host name="localhost" appBase="/chroot2/test/schedule" deployOnStartup ="false" autoDeploy="false" unpackWARs="true">
    <Context path="/schedule" docBase="ScheduleManage.war"/>
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="schedule-web-test.cn-access_log." suffix=".log"
    pattern="common" resolveHosts="false"/>
    </Host>
    主要注意: <Context path="/schedule" docBase="ScheduleManage.war"/>的配置
    nginx配置
    upstream配置:
    upstream tomcat_schedule_web_test{
    server localhost:8291 weight=10;
    }

    server配置:
    server
    {
    listen 80;
    server_name test.schedule.toys178.com;
    index index.jsp index.htm index.html;
    root /chroot2/test;
    location /schedule {
    proxy_pass http://tomcat_schedule_web_test;
    }
    location ~ .*.(gif|jpg|jpeg|png|bmp|swf|apk|tar.gz)$
    {
    expires 30d;
    }
    location ~ .*.(js|css)?$
    {
    expires 12h;
    }
    access_log /chroot/wwwlogs/tomcat_schedule_web_test-access.log access;
    }

  • 相关阅读:
    Windows平板优化设置
    MAC OS UI设计
    使用bat/vbs/ahk对Windows下进行自动化操作
    C#在高性能计算领域为什么性能却如此不尽人意
    自定义多重搜索
    CF797E Array Queries
    标记永久化学习笔记
    P7200 [COCI2019-2020#1] Lutrija
    P1075 [NOIP2012 普及组] 质因数分解
    基础数论重学笔记
  • 原文地址:https://www.cnblogs.com/fx2008/p/4165406.html
Copyright © 2011-2022 走看看