We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e149c commit e36de01Copy full SHA for e36de01
2 files changed
resources/k8s/game-server-pod.yaml
@@ -46,11 +46,11 @@ spec:
46
- name: SERVER_API_PASSWORD
47
value: "{{SERVER_API_PASSWORD}}"
48
- name: API_DOMAIN
49
- value: "http://localhost:8080"
+ value: "http://localhost:8085"
50
- name: DEMOS_DOMAIN
51
52
- name: WS_DOMAIN
53
- value: "ws://localhost:8080/ws"
+ value: "ws://localhost:8085/ws"
54
- name: STEAM_RELAY
55
value: "false"
56
- name: OFFLINE_MODE
src/configs/app.ts
@@ -6,7 +6,7 @@ export default (): {
6
app: {
7
httpPort: process.env.HEALTH_PORT
8
? parseInt(process.env.HEALTH_PORT)
9
- : 8080,
+ : 8085,
10
basicAuthUser: "5s",
11
basicAuthPass: process.env.NODE_NAME as string,
12
},
0 commit comments