updated private cloud server and console

This commit is contained in:
strawmanbobi
2025-10-20 19:24:01 +08:00
parent f00d088078
commit a5ef6ac6ed
35 changed files with 236 additions and 231 deletions

View File

@@ -12,10 +12,10 @@ let enums = new Enums();
//noinspection JSUnresolvedVariable
exports.setupEnvironment = function () {
MYSQL_DB_SERVER_ADDRESS = "localhost";
MYSQL_DB_SERVER_ADDRESS = "127.0.0.1";
MYSQL_DB_NAME = "irext";
MYSQL_DB_USER = "root";
MYSQL_DB_PASSWORD = "root";
MYSQL_DB_PASSWORD = "421aWill.";
REDIS_HOST = "localhost";
REDIS_PORT = "6379";
REDIS_PASSWORD = null;
@@ -23,6 +23,6 @@ exports.setupEnvironment = function () {
PYTHON_PATH = "/usr/bin/python";
LISTEN_PORT = "8301";
SERVER_ADDRESS = "localhost";
EXTERNAL_SERVER_ADDRESS = "irext.net";
EXTERNAL_SERVER_ADDRESS = "srv.irext.net";
EXTERNAL_SERVER_PORT = "80";
};