vk-ssl-auto-deploy 0.7.2 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,7 +14,7 @@ curl -fsSL https://rpm.nodesource.com/setup_18.x | sudo bash - && sudo yum insta
14
14
  winget install --id OpenJS.NodeJS.LTS -e
15
15
  ```
16
16
 
17
- 验证是否完成完成
17
+ 验证node环境是否完成完成
18
18
 
19
19
  ```bash
20
20
  node -v && npm -v
@@ -42,7 +42,9 @@ npm root -g
42
42
 
43
43
  则拼接上 `vk-ssl-auto-deploy`,即执行命令 `cd /usr/lib/node_modules/vk-ssl-auto-deploy` 进入工具目录
44
44
 
45
- ### 5. 编辑配置文件,修改证书保存目录
45
+ ### 5. 编辑配置文件,修改证书保存目录
46
+
47
+ **此步骤可忽略,可以先启动服务,进入可视化管理面板设置**
46
48
 
47
49
  ```bash
48
50
  vim config.json
@@ -82,11 +84,7 @@ vim config.json
82
84
 
83
85
  ### 6. 启动服务,并设置开机自启
84
86
 
85
- #### Linux系统
86
-
87
- ```bash
88
- nohup node app.js > /dev/null 2>&1 &
89
- ```
87
+ #### Linux系统
90
88
 
91
89
  使用PM2的startup功能来实现开机自动启动:
92
90
 
@@ -161,6 +159,10 @@ pm2-startup uninstall
161
159
 
162
160
  # 方法二:在任务计划程序中删除对应的任务
163
161
  ```
162
+
163
+ ### 7. 进入可视化操作面板
164
+
165
+ 在浏览器上输入 `http://服务器外网IP:6001/admin` 进入可视化操作面板,口令默认为 `admin@123456`
164
166
 
165
167
  ## 查找nginx安装目录
166
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vk-ssl-auto-deploy",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "SSL证书自动部署工具 - 提供HTTP API接口,支持证书文件自动上传和部署",
5
5
  "main": "app.js",
6
6
  "scripts": {