[Config] ; Specifies the URIs that the server listens at. Each URI must be terminated ; with a forward slash ("/"). The plus character is used as a hostname wildcard. ; Commas are used to separate multiple addresses. For more detailed documentation ; of the format read: http://msdn.microsoft.com/en-us/library/system.net.httplistenerprefixcollection.add.aspx ListenAddress = http://+:8002/ ; SSL will not work unless a server certificate is installed and bound to the ; same port that the HTTPS listener is on (using httpcfg). Documentation needs to ; be written for this process. ;ListenAddress = http://+:80/, https://+:443/ ; The user server depends on the grid server for looking up region information, ; and sends online/offline and sim crossing messages to the messaging server. ; Each user server is tied to exactly one grid server and messaging server. GridServer = http://localhost:8001/ MessagingServer = http://localhost:8003/ ; The default asset and inventory servers for new accounts. If specific servers ; are not specified during account creation, these will be used. DefaultAssetServer = http://localhost:8003/ DefaultInventoryServer = http://localhost:8004/ ; Default home region coordinates for new avatars. In the future, this will be ; fetched from the grid server DefaultHomeRegionX = 1000 DefaultHomeRegionY = 1000 ; Inventory folder name of the default avatar outfit. Only affects avatars that ; do not have a worn outfit. If this is not specified, the client will use the ; folder name "Default Outfit". The folder can exist in either the inventory or ; the library. DefaultOutfitFolder = "Default Outfit" ; If true, the default male shape is used by the client. Otherwise, the default ; female shape is used. DefaultMale = false ; Welcome message to send to clients if another extension does not override it. DefaultWelcomeMessage = "Optimizing prim trajectories..." [Extensions] SimpleSessions SimpleStorage SimpleAvatars OpenSimXmlRpc RootWebpage LdapAuthentication [LDAP] ; The hostname or IP address of the LDAP server Hostname = directory.mycompany.com ; Whether the LDAP server uses SSL connections or not. For non-SSL connections, ; port 389 will be used. SSL connections use port 636. If you choose to enable ; SSL, make sure the proper certificate has been added to your system ; certificate store with certmgr. See http://www.mono-project.com/FAQ:_Security ; for more information. UseSSL = false ; The Distinguished Name to use for binding to LDAP. Use a specific name if also ; supplying a binding password, otherwise use $1 to substitute with the logging ; in username. Example for Active Directory: "$1@directory.mycompany.com" ; OpenLdap example: "CN=$1,DC=directory,DC=mycompany,DC=com" BindingDN = "$1@directory.mycompany.com" ; The distinguished name (DN) of the domain to search in. SearchBase = "DC=directory,DC=mycompany,DC=com" ; The search query to use for finding user account data. Use $1 to substitute ; with the logging in username. Active Directory example: samAccountName=$1 ; OpenLdap example: cn=$1 UserQuery = "sAMAccountName=$1"