diff options
author | Sean Dague | 2007-10-25 15:33:11 +0000 |
---|---|---|
committer | Sean Dague | 2007-10-25 15:33:11 +0000 |
commit | 1d5ec16865e499a71b9981729ff921c766719dcd (patch) | |
tree | 6a8af23352352934130e9f7d25038a03f10cac35 /bin/OpenSim.ini.example | |
parent | * Added static mutex to terrain load-tile to prevent file IO locking issues. (diff) | |
download | opensim-SC_OLD-1d5ec16865e499a71b9981729ff921c766719dcd.zip opensim-SC_OLD-1d5ec16865e499a71b9981729ff921c766719dcd.tar.gz opensim-SC_OLD-1d5ec16865e499a71b9981729ff921c766719dcd.tar.bz2 opensim-SC_OLD-1d5ec16865e499a71b9981729ff921c766719dcd.tar.xz |
move out the config files to .example files so that they
don't clobber people's configs all the time, and that
we don't get new changes pulled in randomly from people's
configs
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example new file mode 100644 index 0000000..a727b32 --- /dev/null +++ b/bin/OpenSim.ini.example | |||
@@ -0,0 +1,54 @@ | |||
1 | [Startup] | ||
2 | gridmode = false | ||
3 | physics = basicphysics | ||
4 | ; Prim Storage | ||
5 | ; if you would like to use sqlite uncomment the following line (and | ||
6 | ; comment the NullStorage line) | ||
7 | storage_plugin = "OpenSim.DataStore.MonoSqlite.dll" | ||
8 | ;storage_plugin = "OpenSim.DataStore.NullStorage.dll" | ||
9 | startup_console_commands_file = "startup_commands.txt" | ||
10 | shutdown_console_commands_file = "shutdown_commands.txt" | ||
11 | serverside_object_permissions = false | ||
12 | |||
13 | ; asset_database = "db4o" | ||
14 | ; to try sqlite as the asset database , comment out the above line, and uncomment following one | ||
15 | asset_database = "sqlite" | ||
16 | verbose = true | ||
17 | |||
18 | [StandAlone] | ||
19 | accounts_authenticate = true | ||
20 | welcome_message = "Welcome to OpenSim" | ||
21 | inventory_plugin = "OpenSim.Framework.Data.SQLite.dll" | ||
22 | ; userDatabase_plugin = "OpenSim.Framework.Data.DB4o.dll" | ||
23 | userDatabase_plugin = "OpenSim.Framework.Data.SQLite.dll" | ||
24 | default_location_x = 1000 | ||
25 | default_location_y = 1000 | ||
26 | |||
27 | |||
28 | [Network] | ||
29 | http_listener_port = 9000 | ||
30 | remoting_listener_port = 8895 | ||
31 | |||
32 | grid_server_url = "http://127.0.0.1:8001" | ||
33 | grid_send_key = "null" | ||
34 | grid_recv_key = "null" | ||
35 | |||
36 | user_server_url = "http://127.0.0.1:8002" | ||
37 | user_send_key = "null" | ||
38 | user_recv_key = "null" | ||
39 | |||
40 | asset_server_url = "http://127.0.0.1:8003" | ||
41 | |||
42 | [Chat] | ||
43 | whisper_distance = 10 | ||
44 | say_distance = 30 | ||
45 | shout_distance = 100 | ||
46 | |||
47 | ; Uncomment the following for IRC bridge | ||
48 | ; experimental, so if it breaks... keep both parts... yada yada | ||
49 | ; also, not good error detection when it fails | ||
50 | ;[IRC] | ||
51 | ;server = name.of.irc.server.on.the.net | ||
52 | ;nick = OpenSimBotNameProbablyMakeThisShorter | ||
53 | ;channel = #the_irc_channel_you_want_to_connect_to | ||
54 | |||