change port mapping so i dont get rekt

This commit is contained in:
peter
2020-08-13 13:07:26 +02:00
parent 9638d500f5
commit e12bb72632
4 changed files with 25 additions and 19 deletions
@@ -132,7 +132,7 @@ export class ClientApiService implements IApiService{
}
try{
let conn = new RPCSocket<FrontcraftIfc>(20000, window.location.hostname)
let conn = new RPCSocket<FrontcraftIfc>(8080, window.location.hostname)
conn.on('close', async () => {
})
@@ -83,7 +83,7 @@ export class ServerApiService implements IApiService {
}
try {
let conn = new RPCSocket<FrontcraftIfc>(20000, window.location.hostname)
let conn = new RPCSocket<FrontcraftIfc>(8080, window.location.hostname)
conn.on('close', async () => {
})