-
Notifications
You must be signed in to change notification settings - Fork 8
/
.env_example
48 lines (38 loc) · 1.19 KB
/
.env_example
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
## Redis configuration
REDIS_HOST='localhost'
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
## Database configuration
POSTGRES_HOST='localhost'
POSTGRES_PORT=5432
POSTGRES_USER='postgres'
POSTGRES_DBNAME='postgres'
POSTGRES_PASSWORD='postgres'
# The port for the game server to listen on
PORT=7002
# Leave this unchanged, unless you know what you're doing
VERSION="FY15-20150206 (4954)r"
# Set this to the location of the media server
# e.g. http://media.localhost or http://localhost/media
MEDIA_LOCATION="http://media.localhost"
# If you have issues with the game being in a wierd position, try setting this to True
APPLY_WINDOWMANAGER_OFFSET=False
# If you want to enable the beta features, set this to True
ENABLE_BETA=False
# Will force-start the match after a certain amount of time
ALLOW_FORCESTART_SNOW=False
ALLOW_FORCESTART_TUSK=True
# Timeout for the force-start to happen
MATCHMAKING_TIMEOUT=30
## Policy Server configuration (optional)
# Leave this untouched, unless you know what you are doing
ENABLE_POLICY_SERVER=False
POLICY_DOMAIN="*"
POLICY_PORT="*"
## Debug settings
ENABLE_DEBUG_LOGGING=False
DISABLE_AUTHENTICATION=False
DISABLE_ENEMY_AI=False
DISABLE_REWARDS=False
DISABLE_STAMPS=False