Commit 38603a35ff862acacc2884eeb8ee3ed96992139f

Authored by 胡龙江
1 parent 5a912747

更改端口

@@ -22,7 +22,7 @@ REDIS_PREFIX=ai_ @@ -22,7 +22,7 @@ REDIS_PREFIX=ai_
22 # WS_HOST=0.0.0.0 22 # WS_HOST=0.0.0.0
23 # WS_PORT=8888 23 # WS_PORT=8888
24 # HTTP_HOST=0.0.0.0 24 # HTTP_HOST=0.0.0.0
25 -# HTTP_PORT=8889 25 +# HTTP_PORT=8887
26 # WORKER_COUNT=1 26 # WORKER_COUNT=1
27 27
28 # 心跳配置 28 # 心跳配置
@@ -36,7 +36,7 @@ return [ @@ -36,7 +36,7 @@ return [
36 'websocket_host' => getenv('WS_HOST') ?: '0.0.0.0', 36 'websocket_host' => getenv('WS_HOST') ?: '0.0.0.0',
37 'websocket_port' => (int) (getenv('WS_PORT') ?: 8888), 37 'websocket_port' => (int) (getenv('WS_PORT') ?: 8888),
38 'http_host' => getenv('HTTP_HOST') ?: '0.0.0.0', 38 'http_host' => getenv('HTTP_HOST') ?: '0.0.0.0',
39 - 'http_port' => (int) (getenv('HTTP_PORT') ?: 8889), 39 + 'http_port' => (int) (getenv('HTTP_PORT') ?: 8887),
40 'worker_count' => (int) (getenv('WORKER_COUNT') ?: 1), 40 'worker_count' => (int) (getenv('WORKER_COUNT') ?: 1),
41 ], 41 ],
42 42
@@ -5,7 +5,7 @@ services: @@ -5,7 +5,7 @@ services:
5 container_name: moltbot-relay 5 container_name: moltbot-relay
6 ports: 6 ports:
7 - "8888:8888" 7 - "8888:8888"
8 - - "8889:8889" 8 + - "8887:8887"
9 env_file: 9 env_file:
10 - .env 10 - .env
11 volumes: 11 volumes:
Please register or login to post a comment