diff --git a/saiadmin-artd/.env.development b/saiadmin-artd/.env.development index 7f1b722..855b461 100644 --- a/saiadmin-artd/.env.development +++ b/saiadmin-artd/.env.development @@ -7,7 +7,7 @@ VITE_BASE_URL = / VITE_API_URL = /api # 代理目标地址(开发环境通过 Vite 代理转发请求到此地址,解决跨域问题) -VITE_API_PROXY_URL = http://127.0.0.1:6688 +VITE_API_PROXY_URL = http://127.0.0.1:8989 # Delete console VITE_DROP_CONSOLE = false \ No newline at end of file diff --git a/server/config/plugin/tinywan/storage/app.php b/server/config/plugin/tinywan/storage/app.php index fe9470f..db94dad 100644 --- a/server/config/plugin/tinywan/storage/app.php +++ b/server/config/plugin/tinywan/storage/app.php @@ -22,7 +22,7 @@ return [ 'dirname' => function () { return date('Ymd'); }, - 'domain' => 'http://127.0.0.1:6688', + 'domain' => 'http://127.0.0.1:8989', 'uri' => '/runtime', // 如果 domain + uri 不在 public 目录下,请做好软链接,否则生成的url无法访问 'algo' => 'sha1', ], diff --git a/server/config/process.php b/server/config/process.php index 24ad124..037ddb5 100644 --- a/server/config/process.php +++ b/server/config/process.php @@ -21,7 +21,7 @@ global $argv; return [ 'webman' => [ 'handler' => Http::class, - 'listen' => 'http://0.0.0.0:6688', + 'listen' => 'http://0.0.0.0:8989', 'count' => cpu_count() * 4, 'user' => '', 'group' => '',