Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб Texto Inicial y Configuración hacia Internet de nuestro MUD. Parte 5 в хорошем качестве

Texto Inicial y Configuración hacia Internet de nuestro MUD. Parte 5 2 недели назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Texto Inicial y Configuración hacia Internet de nuestro MUD. Parte 5

En este vídeo vemos como configurar nuestra pantalla inicial al cargar nuestro juego MUD cuando entramos en él y lo configuramos para que cualquier persona pueda jugar a él desde su casa o móvil. Fichero para cambiar la pantalla principal: C:\muddev\mygame\server\conf\connection_screens.py Configurar el servidor para que salga a internet: https://www.evennia.com/docs/latest/S... Añadir esto a C:\muddev\mygame\server\conf\settings.py: This is the name of your game. Make it catchy! SERVERNAME = "mygame" open to the internet: 4000, 4001, 4002 closed to the internet (internal use): 4005, 4006 TELNET_PORTS = [4000] TELNET_INTERFACES = ['0.0.0.0'] WEBSOCKET_CLIENT_PORT = 4002 WEBSERVER_PORTS = [(4001, 4005)] WEBSERVER_INTERFACES = ['0.0.0.0'] AMP_PORT = 4006 This needs to be set to your website address for django or you'll receive a CSRF error when trying to log on to the web portal CSRF_TRUSTED_ORIGINS = ['https://mymudgame.com'] uncomment if you want to lock the server down for maintenance. LOCKDOWN_MODE = True Ver puertos abiertos en CMD: netstat -an | find "4000" Ver ip que sale a internet desde CMD: curl ifconfig.me Ver ip del pc hacia el router desde CMD: ipconfig Dominio gratuito para poner un texto a nuestra IP: https://freedns.afraid.org/

Comments