Tiny gopher daemon written in Lua.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
461B

  1. local config = {}
  2. config.path = "/var/gopher" -- the root path of the dir to be served
  3. config.hostname = "shadowkat.net" -- the hostname of the server
  4. config.port = 70 -- the external port of the server
  5. config.bindport = 7000 -- the port to actually bind to
  6. config.dirinfo = true -- whether to output some extra info in automatic directory indexes
  7. config.timer = 0.1 -- main loop timer
  8. config.cgi = true -- whether to enable server-side scripts
  9. return config