; Example Orbit config file for localhost ; Host : The IP address designation that orbit should listen on host = "0.0.0.0" ; Port : the port that orbit should listen on port = 1965 ; Hostname : the expected domain that orbit is serving hostname = "localhost" ; TLS cert file : The location to the cert file tls_certfile = "certs/localhost.cert.pem" ; TLS key file : The location to the private key for the server tls_keyfile = "certs/localhost.key.pem" ; Key passphrase : optional passphrase for server key key_passphrase = "" ; Log file : where orbit should log information log_file = "log/orbit.log" ; Log level : Only log messages that are at or above this level ; Possible values (from low to high): ; - debug ; - info ; - notice ; - warning ; - error ; - critical ; - alert ; - emergency log_level = "info" ; Root dir : Root directory of the server files root_dir = "/var/gemini" ; Index file : Name of the index file (when a directory is accessed) index_file = "index.gmi" ; Enable directory index : Whether orbit should serve up a directory listing ; for directories accessed that have no index file present enable_directory_index = true