-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.default.xml
51 lines (51 loc) · 1.68 KB
/
config.default.xml
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
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<Uchu xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SentryDsn>$SENTRY_DSN</SentryDsn>
<Database>
<Provider>postgres</Provider>
<Database>$POSTGRES_DB</Database>
<Host>db</Host>
<Username>$POSTGRES_USER</Username>
<Password>$POSTGRES_PASSWORD</Password>
</Database>
<ConsoleLogging>
<Level>$LOG_LEVEL</Level>
<Timestamp>false</Timestamp>
</ConsoleLogging>
<FileLogging>
<Level>None</Level>
<File>uchu.log</File>
<Timestamp>false</Timestamp>
</FileLogging>
<DllSource>
<DotNetPath>dotnet</DotNetPath>
<Instance>../../../../Uchu.Instance/bin/Release/net6.0/Uchu.Instance.dll</Instance>
<ScriptDllSource>../../../../Uchu.StandardScripts/bin/Release/net6.0/Uchu.StandardScripts.dll</ScriptDllSource>
</DllSource>
<ManagedScriptSources />
<ResourcesConfiguration>
<GameResourceFolder>/res</GameResourceFolder>
</ResourcesConfiguration>
<Networking>
<Certificate>cert.pfx</Certificate>
<Hostname>$HOSTNAME</Hostname>
<CharacterPort>2002</CharacterPort>
<HostAuthentication>true</HostAuthentication>
<HostCharacter>true</HostCharacter>
<MaxWorldServers>100</MaxWorldServers>
<WorldServerHeartBeatIntervalInMinutes>$HEART_BEAT_INTERVAL</WorldServerHeartBeatIntervalInMinutes>
<WorldServerHeartBeatsPerInterval>$REQUIRED_HEART_BEATS</WorldServerHeartBeatsPerInterval>
</Networking>
<GamePlay>
<PathFinding>false</PathFinding>
<AiWander>false</AiWander>
</GamePlay>
<Api>
<Protocol>http</Protocol>
<Domain>localhost</Domain>
<Port>10000</Port>
</Api>
<Sso>
<Domain />
</Sso>
</Uchu>