aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/example/config/config.ini
blob: f288369b30a002e2c4c7f834d862df2e891d2d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
; The Const section allows us to define some basic information that we
; will use throughout our configuration. We will provide examples for 
; setting the base url of the ROBUST server and the public and private ports
; it uses.  Changing the values of the constants will set the operating
; parameters thoughout the configuration.  Other constants that may prove
; to be useful may be added to the followin section.  They may be 
; referenced anywhere in the configuration by using ${Const|Name}.  One
; such use is providing a base path for setting locations that ROBUST
; uses to write data.

; Also put grid specific stuff here.


[Paths]
    AssetsPath = "../../AssetFiles"
    BackupPath = "../../var/backups"
    CachePath = "../../var/cache"
    ConfigPath = "../../config"
    DbPath = "../../var/lib/db"
    LogPath = "../../var/log"
    PIDPath = "../../var/run"
    WebPath = "../../var/www/html"

[Const]
    MOTD = "Welcome to your local grid."

    GridName = "localhost Grid"
    ShortGridName = "lg"

    ; For a grid these will usually be the externally accessible IP/DNS
    ; name and use default public port 8002 and default private port 8003
    ; For a standalone this will usually be the externally accessible IP/DNS
    ; name and use default public port 9000. The private port is not used
    ; in the configuration for a standalone.
    BaseHostname = "127.0.0.1"
    HostName = "localhost"
    BaseURL = http://${Const|BaseHostname}
    GridURL = http://${Const|BaseHostname}

    PublicPort = "8002"
    PrivatePort = "8003"

    ; The public port of the ROBUST asset server, which might be different.
    AssetServerPort = "8003"

    ; Database credentials.
    DataProvider = "OpenSim.Data.MySQL.dll"
    ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;"