ofbiz中修改前台和后台的访问端口

  • 前台网店
  1. ofbiz\framework\base\config\ofbiz-containers.xml中的以下部分中的8080。

    Xml代码 复制代码
    1. <http-connector>  
    2. ...   
    3.   <property name="port" value="8080" />  
    4. </http-connector>  
    <http-connector>
    ...
      <property name="port" value="8080" />
    </http-connector>
    
     
  2. ofbiz\framework\webapp\config\url.properties中的设置项

    # HTTP Port (Not Secure port)
    port.http=8080.
  • 带SSL连接的后台
  1. ofbiz\framework\base\config\ofbiz-containers.xml中的以下部分中的8443。

    Xml代码 复制代码
    1. <https-connector>  
    2. ...   
    3.   <property name="port" value="8080" />  
    4. </http-connector>  
    <https-connector>
    ...
      <property name="port" value="8080" />
    </http-connector>
    
     
  2. ofbiz\framework\webapp\config\url.properties中的设置项中的8443

    # HTTPS Port (Secure port)
    port.https.enabled=N
    port.https=8443
    force.https.host=

你可能感兴趣的:(xml)