域名的配置
端口要改成80
找到/usr/tomcat/apache-tomcat-8.5.30/conf的目录,找到server.xml文件,到
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context path="" docBase="." debug="0" reloadable="true"/>
配置
name="域名"
appBase="webapps/访问的指定文件"
案例
<Host name="www.thadiamond.com" appBase="webapps/dist"
unpackWARs="true" autoDeploy="true">
<Context path="" docBase="." debug="0" reloadable="true"/>
以上配置程序中的接口访问也要用到域名去访问
第二中配,访问程序用IP去访问
端口要改成80
localhost:是本地服务器的IP,因为域名已经配置映射了这个IP
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context path="" docBase="dist" debug="0" reloadable="true"/>
docBase:访问项目得绝对路径