diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.ConsoleClient.exe.config | 33 | ||||
-rw-r--r-- | bin/OpenSim.ConsoleClient.ini.example | 1 | ||||
-rw-r--r-- | bin/OpenSim.Data.NHibernate.Tests.dll.config | 2 | ||||
-rw-r--r-- | bin/OpenSim.Server.ini.example | 6 | ||||
-rw-r--r-- | bin/OpenSim.ini.example | 2 |
5 files changed, 43 insertions, 1 deletions
diff --git a/bin/OpenSim.ConsoleClient.exe.config b/bin/OpenSim.ConsoleClient.exe.config new file mode 100644 index 0000000..7aa974c --- /dev/null +++ b/bin/OpenSim.ConsoleClient.exe.config | |||
@@ -0,0 +1,33 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <configuration> | ||
3 | <configSections> | ||
4 | <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> | ||
5 | </configSections> | ||
6 | <runtime> | ||
7 | <gcConcurrent enabled="true" /> | ||
8 | <gcServer enabled="true" /> | ||
9 | </runtime> | ||
10 | <appSettings> | ||
11 | </appSettings> | ||
12 | <log4net> | ||
13 | <appender name="Console" type="OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console"> | ||
14 | <layout type="log4net.Layout.PatternLayout"> | ||
15 | <conversionPattern value="%date{HH:mm:ss} - %message%newline" /> | ||
16 | </layout> | ||
17 | </appender> | ||
18 | |||
19 | <appender name="LogFileAppender" type="log4net.Appender.FileAppender"> | ||
20 | <file value="OpenSim.ConsoleClient.log" /> | ||
21 | <appendToFile value="true" /> | ||
22 | <layout type="log4net.Layout.PatternLayout"> | ||
23 | <conversionPattern value="%date %-5level - %logger %message%newline" /> | ||
24 | </layout> | ||
25 | </appender> | ||
26 | |||
27 | <root> | ||
28 | <level value="DEBUG" /> | ||
29 | <appender-ref ref="Console" /> | ||
30 | <appender-ref ref="LogFileAppender" /> | ||
31 | </root> | ||
32 | </log4net> | ||
33 | </configuration> | ||
diff --git a/bin/OpenSim.ConsoleClient.ini.example b/bin/OpenSim.ConsoleClient.ini.example new file mode 100644 index 0000000..beea7d8 --- /dev/null +++ b/bin/OpenSim.ConsoleClient.ini.example | |||
@@ -0,0 +1 @@ | |||
[Startup] | |||
diff --git a/bin/OpenSim.Data.NHibernate.Tests.dll.config b/bin/OpenSim.Data.NHibernate.Tests.dll.config index a3f681d..9b3231f 100644 --- a/bin/OpenSim.Data.NHibernate.Tests.dll.config +++ b/bin/OpenSim.Data.NHibernate.Tests.dll.config | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | <!-- Set root logger level to DEBUG and its only appender to A1 --> | 27 | <!-- Set root logger level to DEBUG and its only appender to A1 --> |
28 | <root> | 28 | <root> |
29 | <level value="DEBUG" /> | 29 | <level value="Info" /> |
30 | <appender-ref ref="A1" /> | 30 | <appender-ref ref="A1" /> |
31 | </root> | 31 | </root> |
32 | </log4net> | 32 | </log4net> |
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index f0c0de9..aab0566 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -14,6 +14,12 @@ ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.S | |||
14 | [Network] | 14 | [Network] |
15 | port = 8003 | 15 | port = 8003 |
16 | 16 | ||
17 | ; * The following are for the remote console | ||
18 | ; * They have no effect for the local or basic console types | ||
19 | ; * Leave commented to diable logins to the console | ||
20 | ;ConsoleUser = Test | ||
21 | ;ConsolePass = secret | ||
22 | |||
17 | ; * As an example, the below configuration precisely mimicks the legacy | 23 | ; * As an example, the below configuration precisely mimicks the legacy |
18 | ; * asset server. It is read by the asset IN connector (defined above) | 24 | ; * asset server. It is read by the asset IN connector (defined above) |
19 | ; * and it then loads the OUT connector (a local database module). That, | 25 | ; * and it then loads the OUT connector (a local database module). That, |
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index db993b4..a1532c5 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -292,6 +292,8 @@ | |||
292 | LibrariesXMLFile="./inventory/Libraries.xml" | 292 | LibrariesXMLFile="./inventory/Libraries.xml" |
293 | 293 | ||
294 | [Network] | 294 | [Network] |
295 | ConsoleUser = "Test" | ||
296 | ConsolePass = "secret" | ||
295 | http_listener_port = 9000 | 297 | http_listener_port = 9000 |
296 | default_location_x = 1000 | 298 | default_location_x = 1000 |
297 | default_location_y = 1000 | 299 | default_location_y = 1000 |