Skip to content

Commit e36de01

Browse files
committed
chore: change default ports to 8085
1 parent c3e149c commit e36de01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

resources/k8s/game-server-pod.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ spec:
4646
- name: SERVER_API_PASSWORD
4747
value: "{{SERVER_API_PASSWORD}}"
4848
- name: API_DOMAIN
49-
value: "http://localhost:8080"
49+
value: "http://localhost:8085"
5050
- name: DEMOS_DOMAIN
51-
value: "http://localhost:8080"
51+
value: "http://localhost:8085"
5252
- name: WS_DOMAIN
53-
value: "ws://localhost:8080/ws"
53+
value: "ws://localhost:8085/ws"
5454
- name: STEAM_RELAY
5555
value: "false"
5656
- name: OFFLINE_MODE

src/configs/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default (): {
66
app: {
77
httpPort: process.env.HEALTH_PORT
88
? parseInt(process.env.HEALTH_PORT)
9-
: 8080,
9+
: 8085,
1010
basicAuthUser: "5s",
1111
basicAuthPass: process.env.NODE_NAME as string,
1212
},

0 commit comments

Comments
 (0)