Add SERVER_HOSTNAME setting. Update website index to show telnet connect info

This commit is contained in:
Griatch 2021-10-31 10:38:38 +01:00
parent be3fea2af4
commit 063c44f38d
4 changed files with 97 additions and 31 deletions

View file

@ -27,6 +27,10 @@ SERVERNAME = "Evennia"
# Short one-sentence blurb describing your game. Shown under the title
# on the website and could be used in online listings of your game etc.
GAME_SLOGAN = "The Python MUD/MU* creation system"
# The url address to your server, like mymudgame.com. This should be the publicly
# visible location. This is used e.g. on the web site to show how you connect to the
# game over telnet. Default is localhost (only on your machine).
SERVER_HOSTNAME = "localhost"
# Lockdown mode will cut off the game from any external connections
# and only allow connections from localhost. Requires a cold reboot.
LOCKDOWN_MODE = False