Enabled profile, change default websocket port

This commit is contained in:
Griatch 2018-01-18 21:55:06 +01:00
parent 03472e0d09
commit 4233298345
3 changed files with 14 additions and 12 deletions

View file

@ -196,7 +196,7 @@ if AMP_ENABLED:
from evennia.server.portal import amp_server
INFO_DICT["amp"] = 'amp: %s)' % AMP_PORT
INFO_DICT["amp"] = 'amp: %s' % AMP_PORT
factory = amp_server.AMPServerFactory(PORTAL)
amp_service = internet.TCPServer(AMP_PORT, factory, interface=AMP_INTERFACE)
@ -330,7 +330,7 @@ if WEBSERVER_ENABLED:
interface=interface)
proxy_service.setName('EvenniaWebProxy%s' % pstring)
PORTAL.services.addService(proxy_service)
INFO_DICT["webserver_proxy"].append("website%s: %s" % (ifacestr, proxyport))
INFO_DICT["webserver_proxy"].append("webserver-proxy%s: %s" % (ifacestr, proxyport))
INFO_DICT["webserver_internal"].append("webserver: %s" % serverport)