Rename Chunithm title server module
Since we plan to support more than one game there will of course be more than one "title server".
This commit is contained in:
+2
-2
@@ -6,7 +6,7 @@ const net = require('net')
|
||||
const aimedb = require('./aimedb')
|
||||
const billing = require('./billing')
|
||||
const startup = require('./startup')
|
||||
const title = require('./title')
|
||||
const chunithm = require('./chunithm')
|
||||
|
||||
const tls = {
|
||||
cert: fs.readFileSync('pki/server.pem'),
|
||||
@@ -16,4 +16,4 @@ const tls = {
|
||||
net.createServer(aimedb).listen(22345)
|
||||
http.createServer(startup).listen(80)
|
||||
https.createServer(tls, billing).listen(8443)
|
||||
http.createServer(title).listen(9000)
|
||||
http.createServer(chunithm).listen(9000)
|
||||
|
||||
Reference in New Issue
Block a user