Tiny gopher daemon written in Lua.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12 lignes
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