溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Nginx+Tomcat多站點如何部署

發(fā)布時間:2021-08-21 09:28:11 來源:億速云 閱讀:83 作者:小新 欄目:服務(wù)器

這篇文章主要為大家展示了“Nginx+Tomcat多站點如何部署”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Nginx+Tomcat多站點如何部署”這篇文章吧。

Tomcat配置:

添加多域名:

Engine節(jié)點下:

添加域名1

<Host name="test1.java.com" appBase="webapps1"
    unpackWARs="true" autoDeploy="true">
  <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
      prefix="localhost_access_log" suffix=".txt"
      pattern="%h %l %u %t &quot;%r&quot; %s %b" />
 <Context path="" docBase="/var/lib/tomcat8/webapps/test1" debug="0" reloadable="true" crossContext="true" />
 </Host>

添加域名2

<Host name="test1.java.com" appBase="webapps2"
    unpackWARs="true" autoDeploy="true">
  <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
      prefix="localhost_access_log" suffix=".txt"
      pattern="%h %l %u %t &quot;%r&quot; %s %b" />
  <Context path="" docBase="/var/lib/tomcat8/webapps/manage" debug="0" reloadable="true" crossContext="true" />
 </Host>

注意,還需要一個默認語句,即name="localhost"的域名,否則tomcat偶爾會報空指針錯誤,導(dǎo)致無法使用

 <Host name="localhost" appBase="webapps0"
    unpackWARs="true" autoDeploy="true">
  <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
      prefix="localhost_access_log" suffix=".txt"
      pattern="%h %l %u %t &quot;%r&quot; %s %b" />
  <Context path="" docBase="/var/lib/tomcat8/webapps/manage" debug="0" reloadable="true" crossContext="true" />
 </Host>

至此,配置完成,重啟tomcat:

sudo /etc/init.d/tomcat8 stop
sudo /etc/init.d/tomcat8 start


sudo /etc/init.d/tomcat8 restart

若域名解析完成,則可在瀏覽器中進行測試

http://test1.java.com:8080
http://test2.java.com:8080

若正確,則可正常訪問

配置Nginx

進入Nginx根目錄(以ubuntu 16.04為準)

cd /etc/nginx

進入sites-available目錄

cd sites-available

創(chuàng)建配置文件(已test1.java.com為例)

vi test1.java.com

輸入配置內(nèi)容

server{
    listen 80;
    server_name test1.java.com;
    server_name_in_redirect off;
    proxy_set_header Host $host:$server_port;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    location / {
        proxy_pass http://test1.java.com:8080;
    }
}

esc后:wq進行保存

創(chuàng)建軟連接已進行使用

ln -s /etc/nginx/sites-available/test1.java.com /etc/nginx/sites-enabled/test1.java.com

重啟Nginx

/etc/init.d/nginx stop
/etc/init.d/nginx start
或
/etc/init.d/nginx restart

以上是“Nginx+Tomcat多站點如何部署”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI