-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsourcemud.conf.in
More file actions
114 lines (77 loc) · 2.46 KB
/
sourcemud.conf.in
File metadata and controls
114 lines (77 loc) · 2.46 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
## -- sourcemud.conf --
## Configuration file for Source MUD
## @VERSION@
## Log file.
log_file = log/sourcemud.log
## HTTP Log file.
http_log_file = log/sm_access.log
## PID file
pid_file = var/sourcemud.pid
## HTTP session key file.
skey_dir = data/session.key
## Directory holding player files.
player_dir = data/players/
## Directory holding account files.
account_dir = data/accounts/
## Directory holding zones.
zone_dir = data/world/
## Directory holding world state.
world_dir = data/
## Directory holding scripts.
script_dir = data/scripts/
## Directory holding AI definitions.
ai_dir = data/scripts/
## Directory holding blueprints.
blueprint_dir = data/blueprints/
## Directory holding help files.
help_dir = data/help/
## Directory holding misc. data.
misc_dir = data/
## Directory holding HTML .tpl files.
html_dir = data/html/
## Port to listen on for both IPv4 and IPv6 clients.
#port = 4545
## Maximum number of connections allowed from a single host address.
#max_per_host = 5
## Maximum number of connections allowed in total from all hosts.
#max_clients = 1000
## Minutes of inactivity on a telnet connection before it is disconnected.
#telnet_timeout = 30
## Minutes of inactivity on an HTTP session before it is discarded.
#http_timeout = 30
## Enable IPv6 support.
#ipv6 = true
## List of denies hosts and networks.
#denied_hosts_file = hosts.deny
## The host name of the server.
hostname = @HOSTNAME@
## Maximum number of charaters allowed per account.
#chars_per_account = 3
## Maximum number of characters which may be active per account.
#active_per_account = 1
## Enable creation of new accounts.
#account_creation = true
## Auto-save time in minutes.
#auto_save = 15
## Backup zone files.
#backup_zones = true
## Backup player files.
#backup_players = true
## Run in the background as a server daemon.
#daemon = false
## Lock server into a directory, increasing security.
#chroot = /home/sourcemud/jail
## Always run as the given user. (Server must be started as root.)
#user = sourcemud
## Always run as the given group. (Server must be started as root.)
#group = daemon
## Path to the sendmail binary.
sendmail = @PATH_SENDMAIL@
## Address to send admin notifications to.
#admin_mail = sourcemud-admin@@HOSTNAME@
## Address to send bug reports to.
#bug_mail = sourcemud-bugs@@HOSTNAME@
## Address to send player abuse reports to.
#abuse_mail = sourcemud-abuse@@HOSTNAME@
## Address to send typo reports to.
#typo_mail = sourcemud-typo@@HOSTNAME@