mirror of
https://git.shadowkat.net/izaya/tiny-gopherd.git
synced 2024-10-08 15:33:43 -04:00
12 lines
461 B
INI
12 lines
461 B
INI
local config = {}
|
|
|
|
config.path = "/var/gopher" -- the root path of the dir to be served
|
|
config.hostname = "shadowkat.net" -- the hostname of the server
|
|
config.port = 70 -- the external port of the server
|
|
config.bindport = 7000 -- the port to actually bind to
|
|
config.dirinfo = true -- whether to output some extra info in automatic directory indexes
|
|
config.timer = 0.1 -- main loop timer
|
|
config.cgi = true -- whether to enable server-side scripts
|
|
|
|
return config
|