v1.0.1: 端口 16106→16089(16001-16100 外网安全组白名单内)

This commit is contained in:
2026-08-27 00:56:19 +08:00
parent 3a6d4fc683
commit 9c2133a992
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -25,14 +25,14 @@
## 快速开始 ## 快速开始
```bash ```bash
./start.sh # 默认端口 16106 ./start.sh # 默认端口 16089
./start.sh stop # 停止 ./start.sh stop # 停止
``` ```
访问 `http://<IP>:16106/` 访问 `http://<IP>:16089/`
- 首页注册即可用(免费) - 首页注册即可用(免费)
- 管理后台:`http://<IP>:16106/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费) - 管理后台:`http://<IP>:16089/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费)
## 技术栈 ## 技术栈
+1 -1
View File
@@ -474,5 +474,5 @@ def ping():
if __name__ == '__main__': if __name__ == '__main__':
port = int(os.environ.get('PORT', '16106')) port = int(os.environ.get('PORT', '16089'))
app.run(host='0.0.0.0', port=port, debug=False, threaded=True) app.run(host='0.0.0.0', port=port, debug=False, threaded=True)
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# FreeCut 自由剪辑 启动脚本 # FreeCut 自由剪辑 启动脚本
cd "$(dirname "$0")" cd "$(dirname "$0")"
PORT=${PORT:-16106} PORT=${PORT:-16089}
PY=/home/hz1/miniconda3/envs/openclaw/bin/python3 PY=/home/hz1/miniconda3/envs/openclaw/bin/python3
LOG=logs/app.log LOG=logs/app.log
mkdir -p logs mkdir -p logs