mirror of
https://github.com/djhackersdev/minime.git
synced 2026-07-19 16:51:33 -05:00
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:
parent
4b7cf4f281
commit
991e09dd3b
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user