Commit 38603a35ff862acacc2884eeb8ee3ed96992139f

Authored by 胡龙江
1 parent 5a912747

更改端口

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