Advertisement
Guest User

Untitled

a guest
Jun 15th, 2010
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.09 KB | None | 0 0
  1. <!--
  2.    This file stores bootstrap properties needed by Openfire.
  3.    Property names must be in the format: "prop.name.is.blah=value"
  4.    That will be stored as:
  5.        <prop>
  6.            <name>
  7.                <is>
  8.                    <blah>value</blah>
  9.                </is>
  10.            </name>
  11.        </prop>
  12.  
  13.    Most properties are stored in the Openfire database. A
  14.    property viewer and editor is included in the admin console.
  15. -->
  16. <!-- root element, all properties must be under this element -->
  17. <jive>
  18.     <adminConsole>
  19.         <!-- Disable either port by setting the value to -1 -->
  20.         <port>9090</port>
  21.         <securePort>9091</securePort>
  22.     </adminConsole>
  23.  
  24.     <locale>en</locale>
  25.  
  26.     <!-- Network settings. By default, Openfire will bind to all network interfaces.
  27.      Alternatively, you can specify a specific network interfaces that the server
  28.      will listen on. For example, 127.0.0.1. This setting is generally only useful
  29.       on multi-homed servers. -->
  30.     <!--
  31.    <network>
  32.        <interface></interface>
  33.    </network>
  34.    -->
  35. </jive>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement