diff options
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 43 |
1 files changed, 28 insertions, 15 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index c1141fb..fc10a8d 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -636,28 +636,41 @@ AllowosConsoleCommand = false | |||
636 | 636 | ||
637 | [GridInfo] | 637 | [GridInfo] |
638 | 638 | ||
639 | ; These settings are used to return information on a get_grid_info call | 639 | ; These settings are used to return information on a get_grid_info call. |
640 | ; Don't worry about this section if you don't know what it means - "wrong" | 640 | ; Client launcher scripts and third-party clients make use of this to |
641 | ; settings here will have no effect upon the OpenSimulator runtime | 641 | ; autoconfigure the client and to provide a nice user experience. If you |
642 | ; want to facilitate that, you should configure the settings here according | ||
643 | ; to your grid or standalone setup. | ||
642 | ; | 644 | ; |
643 | ; See http://opensimulator.org/wiki/GridInfo | 645 | ; See http://opensimulator.org/wiki/GridInfo |
644 | 646 | ||
645 | ; login uri | 647 | ; login uri: for grid this is the user server URI |
646 | login = http://127.0.0.1:9000/ | 648 | login = http://127.0.0.1:9000/ |
647 | ; login page | 649 | |
650 | ; long grid name: the long name of your grid | ||
651 | gridname = "the lost continent of hippo" | ||
652 | |||
653 | ; short grid name: the short name of your grid | ||
654 | gridnick = "hippogrid" | ||
655 | |||
656 | |||
657 | ; login page: optional: if it exists it will be used to tell the client to use | ||
658 | ; this as splash page | ||
648 | welcome = http://127.0.0.1/welcome | 659 | welcome = http://127.0.0.1/welcome |
649 | ; helper uri | 660 | |
661 | ; helper uri: optional: if it exists if will be used to tell the client to use | ||
662 | ; this for all economy related things | ||
650 | economy = http://127.0.0.1:9000/ | 663 | economy = http://127.0.0.1:9000/ |
651 | ; web page of grid | 664 | |
665 | ; web page of grid: optional: page providing further information about your grid | ||
652 | about = http://127.0.0.1/about/ | 666 | about = http://127.0.0.1/about/ |
653 | ; account creation | 667 | |
668 | ; account creation: optional: page providing further information about obtaining | ||
669 | ; a user account on your grid | ||
654 | register = http://127.0.0.1/register | 670 | register = http://127.0.0.1/register |
655 | ; help | 671 | |
672 | ; help: optional: page providing further assistance for users of your grid | ||
656 | help = http://127.0.0.1/help | 673 | help = http://127.0.0.1/help |
657 | ; password help | ||
658 | password = http://127.0.0.1/password | ||
659 | ; long grid name | ||
660 | gridname = "the lost continent of hippo" | ||
661 | ; short grid name | ||
662 | gridnick = "hippogrid" | ||
663 | 674 | ||
675 | ; password help: optional: page providing password assistance for users of your grid | ||
676 | password = http://127.0.0.1/password | ||