25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
# Port to run the telnet server on.
|
|
PORT_TELNET = 19999
|
|
# Port to run the flash policy server on. Set to None to turn off.
|
|
PORT_FLASHPOLICY = 20001
|
|
# Hostname to bind servers on. Leave as "" for all.
|
|
BIND_HOSTNAME = ""
|
|
# width and height; default 80x25
|
|
W = 80
|
|
H = 25
|
|
# directory to save ANSI pictures to. leave as "." for current directory. no trailing slash required. "" == /
|
|
DIR_ANSI = "/home/jeremy/sites/marmots/ansi"
|
|
# authorization. Options are "Noop" (make up a username, no password), "Drupal" (fetches from MySQL Drupal database),
|
|
#"DrupalBcrypt" (fetches from MySQL Drupal database hacked to bcrypt the md5 hash - basically just Glorious Trainwrecks)
|
|
AUTH = "Noop"
|
|
# if Drupal, configure these options:
|
|
#drupaldb = "database"
|
|
#drupaldb_user = "user"
|
|
#drupaldb_password = "password"
|
|
#drupaldb_host = "localhost"
|
|
|
|
# Port to run the command server on. Set to None to turn off. Only set this port for testing: it will allow anyone to take down the server!
|
|
PORT_CMDSERVER = 20002
|
|
# Flag whether we should build and use Cython modules to improve performance.
|
|
USE_CYTHON = True
|