diff --git a/vite.config.ts b/vite.config.ts
index 6742f31efeee48b91236b1d8dea5b876b0745a39..0e6455a9a5f0a97c20fc003bcfcf8a5996bd1429 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -26,11 +26,13 @@ export default defineConfig({
   server: {
     proxy: {
       '/api/': {
-        target: 'http://127.0.0.1:5000/', // 后端服务实际地址
+        target: 'http://127.0.0.1:5001/', // 后端服务实际地址
         changeOrigin: true,
         rewrite: (path: any) => path.replace(/^\/api/, '')
       }
     },
-    port: 9528
+    host: '0.0.0.0',
+    port: 9528,
+    https: false,
   }
 })