美文网首页
站点配置方法

站点配置方法

作者: majorty | 来源:发表于2018-05-02 23:13 被阅读0次
    <Host name="localhost"  appBase="webapps"
                unpackWARs="true" autoDeploy="true"
                xmlValidation="false" xmlNamespaceAware="false">
    
            <!-- SingleSignOn valve, share authentication between web applications
                 Documentation at: /docs/config/valve.html -->
            <!--
            <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
            -->
    
            <!-- Access log processes all example.
                 Documentation at: /docs/config/valve.html -->
            <!--
            <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"  
                   prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
            -->
          </Host>
    

    name: 表示站点名称。访问站点就是使用站点名称。
    appBases: 表示站点根目录

    站点和网站的关系?
    一个站点可以包含多个网站。
    一个网站就在一个站点中。

    添加站点:
    1)在server.xml文件中添加host标签
    2)在本地的hosts文件,中添加一个站点和ip地址的映射127.0.0.1   www.baidu.com
    3)访问站点的百度音乐项目
    http://www.baidu.com/music/index.html
    

    相关文章

      网友评论

          本文标题:站点配置方法

          本文链接:https://www.haomeiwen.com/subject/gdphrftx.html