├── beikeyun.sh ├── n1.sh ├── n1 ├── aria2.html └── other-docker.html ├── readme.md └── theme └── darkmatter ├── static └── js │ ├── common.js │ └── zh-cn.json └── templates ├── appcfg ├── aria2-extra.html ├── aria2-log.html ├── aria2.html ├── dashboard-cert.html ├── dashboard-log.html ├── dashboard.html ├── frp-log.html ├── frp-proxies.html ├── frp.html ├── nfsd.html ├── other-docker.html ├── other-fm.html ├── other-ftp.html ├── other-gerbera.html ├── other-jellyfin.html ├── other-sync.html ├── qb-log.html ├── qb.html ├── smb-log.html ├── smb-share.html ├── smb-users.html ├── smb.html ├── transmission-extra.html └── transmission.html ├── public └── login.html ├── status ├── banned.html ├── disks.html ├── dmesg.html ├── processes.html ├── syslog.html └── traffic.html └── system ├── admin.html ├── crontab.html ├── startup.html ├── system-network.html ├── system.html └── tool.html /beikeyun.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | wget -c https://github.com/ledccn/beikeyun/archive/master.zip -O beikeyun.zip 3 | unzip -o ./beikeyun.zip -d /usr 4 | cp -rf /usr/beikeyun-master/* /usr/local/apps/dashboard 5 | /etc/init.d/S99dashboard restart 6 | -------------------------------------------------------------------------------- /n1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | wget -c https://github.com/ledccn/beikeyun/archive/master.zip -O beikeyun.zip 3 | unzip -o ./beikeyun.zip -d /usr 4 | cp -rf /usr/beikeyun-master/* /usr/local/apps/dashboard 5 | cp /usr/local/apps/dashboard/n1/aria2.html /usr/local/apps/dashboard/theme/darkmatter/templates/appcfg/aria2.html 6 | cp /usr/local/apps/dashboard/n1/other-docker.html /usr/local/apps/dashboard/theme/darkmatter/templates/appcfg/other-docker.html 7 | /etc/init.d/S99dashboard restart -------------------------------------------------------------------------------- /n1/aria2.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/aria2" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 | 17 | 18 |
19 |
20 |

Aria2配置

21 |
在这里,配置Aria2。 22 |
23 |
24 | Aria2 25 | 26 | 37 | 38 | 39 |
40 | 41 |
42 | 43 |
44 | 45 |
46 | 47 | Web UI 48 |
49 |
50 |
51 | 52 |
53 | 55 | 默认 6800 56 |
57 | 58 |
59 | 60 |
61 | 62 |
63 | 65 |
66 |
67 | 68 |
69 | 70 |
71 |
72 | 73 | 74 |
75 | 76 |
77 | 安全设置 78 | 79 |
80 | 81 |
82 | 83 |
84 | 89 |
90 |
91 | 92 |
93 | 94 |
95 | 97 | 100 | 连接格式:http://token:xxxxxx@host:port/jsonrpc 101 |
102 |
103 | 104 | 105 |
106 |
107 | 108 |
109 | 磁盘配置 110 | 111 |
112 | 113 |
114 | 115 |
116 | 118 | 默认 256M 119 |
120 |
121 | 122 |
123 |
124 |
125 |
126 | 127 | 128 |
129 |
130 | 131 | 171 | 172 | {{template "common/footer"}} 173 | {{ end }} -------------------------------------------------------------------------------- /n1/other-docker.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-docker" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
Docker配置
17 |
18 | Docker 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 56 |
57 |
58 | 59 |
60 | 61 |
62 | 63 | Docker UI 64 |
65 |
66 | 67 |
68 | 69 |
70 | 72 | 默认 9000 (需要安装Docker UI才能生效) 73 |
74 |
75 | 76 |
77 | 78 |
79 | 81 | 默认 /var/lib/docker/data 82 |
83 |
84 | 85 |
86 |
87 |
88 |
89 |
90 |
91 | 92 | 93 |
94 | 95 |
96 | 97 | 160 | 161 | {{template "common/footer"}} 162 | {{ end }} -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # 小钢炮适用版本: 2 | 3 | - phicomm-n1 20190411-2042 4 | - beikeyun 20190506-0242 freq-limited 5 | - beikeyun 20190506-0242 6 | 7 | 请认真核对版本,然后继续! 8 | ====================================== 9 | ## 命令安装方法: 10 | 11 | ```bash 12 | # 下载汉化包 13 | wget -c https://github.com/ledccn/beikeyun/archive/master.zip -O beikeyun.zip 14 | # 解压并安装 15 | unzip -o ./beikeyun.zip -d /usr 16 | cp -rf /usr/beikeyun-master/* /usr/local/apps/dashboard 17 | # 重启管理面板 18 | /etc/init.d/S99dashboard restart 19 | 20 | # 如果你的小钢炮是N1,再多执行2条命令: 21 | cp /usr/local/apps/dashboard/n1/aria2.html /usr/local/apps/dashboard/theme/darkmatter/templates/appcfg/aria2.html 22 | 23 | cp /usr/local/apps/dashboard/n1/other-docker.html /usr/local/apps/dashboard/theme/darkmatter/templates/appcfg/other-docker.html 24 | 25 | /etc/init.d/S99dashboard restart 26 | ``` 27 | ====================================== 28 | ## 手动安装方法: 29 | 1、用scp或其他方法把,解压好的theme移到/usr/local/apps/dashboard/中 30 | 31 | 2、重启dashboard 32 | `/etc/init.d/S99dashboard restart` 33 | 34 | ====================================== 35 | 36 | 不断更新:https://www.iyuu.cn/archives/10/ 37 | 38 | 来自:367013672@qq.com 39 | 40 | -------------------------------------------------------------------------------- /theme/darkmatter/static/js/common.js: -------------------------------------------------------------------------------- 1 | 2 | var isRestartSysFadein = false; 3 | var checkSysRestartStatus = function () { 4 | if (!isRestartSysFadein) { 5 | $(".main > .loading").fadeIn("fast"); 6 | isRestartSysFadein = true; 7 | } 8 | //https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch 9 | var external = location.href; 10 | if (window.fetch) { 11 | // must be chrome or firefox which have native fetch 12 | fetch(external, {'mode':'no-cors'}) 13 | .then(function (r) { 14 | // external is reachable; but failed due to cors 15 | // fetch will pass though if it's a cors error 16 | alertify.notify('Reboot successfully.', 'success', 5, function(){ console.log('Reboot Done.'); }); 17 | console.log(r); 18 | location.reload(); 19 | }) 20 | .catch(function () { 21 | console.log('external is _not_ reachable'); 22 | setTimeout('checkSysRestartStatus()', 1000); 23 | }); 24 | } else { 25 | // must be non-updated safari or older IE... 26 | // I don't know how to find error type in this case 27 | alert("your browser does not support native fetch api. please reload page manually."); 28 | } 29 | }; 30 | 31 | var processCheck = function (process_name, target_ele) { 32 | let targetBtn = $(target_ele); 33 | let fail_class = 'cbi-input-remove'; 34 | let succ_class = 'cbi-input-save'; 35 | $.get("/api/system/process/status?name="+process_name, function (resp) { 36 | if (resp.error == 0 && resp.data.is_running == 1) { 37 | targetBtn.removeClass(fail_class); 38 | targetBtn.addClass(succ_class); 39 | targetBtn.val(process_name + " Running"); 40 | } else { 41 | targetBtn.removeClass(succ_class); 42 | targetBtn.addClass(fail_class); 43 | targetBtn.val(process_name + " Stopped"); 44 | } 45 | }); 46 | }; 47 | 48 | // from Underscore.js 49 | var isFunction = function(obj) { 50 | return !!(obj && obj.constructor && obj.call && obj.apply); 51 | }; 52 | 53 | var statusCheck = function (api_url, target_ele, cb) { 54 | let targetBtn = $(target_ele); 55 | let fail_class = 'cbi-input-remove'; 56 | let succ_class = 'cbi-input-save'; 57 | let that = this; 58 | $.get(api_url, function (resp) { 59 | targetBtn.val(resp.status); 60 | let succ = false; 61 | if (/work|ok|success/.test(resp.status)) { 62 | targetBtn.removeClass(fail_class); 63 | targetBtn.addClass(succ_class); 64 | succ = true; 65 | } else { 66 | targetBtn.removeClass(succ_class); 67 | targetBtn.addClass(fail_class); 68 | } 69 | if (isFunction(cb)) { 70 | cb.call(that, succ); 71 | } 72 | }); 73 | }; 74 | 75 | /* 76 | *JS动态翻译小钢炮 77 | *作者:大卫科技blog 78 | *网站:https://www.iyuu.cn 79 | *汉化下载: 80 | N1小钢炮汉化包20190411-2042 81 | https://www.iyuu.cn/archives/13/ 82 | 83 | beikeyun贝壳云小钢炮汉化包20190506-0242 84 | https://www.iyuu.cn/archives/10/ 85 | */ 86 | $(document).ready(function(){ 87 | console.log('JS动态翻译小钢炮+自定义导航'); 88 | console.log('作者:大卫'); 89 | console.log('网站:https://www.iyuu.cn'); 90 | console.log('项目仓库:https://github.com/ledccn/beikeyun'); 91 | // 获取语言文件 92 | $.getJSON("/static/js/zh-cn.json", function (data){ 93 | // 主菜单 选择器 94 | let menus = $(".menu"); 95 | // 子菜单 选择器 96 | let smenus = $(".slide-menu"); 97 | // 翻译主菜单 98 | for(i=0; i'; 155 | $(".pull-right").append(val); 156 | } else { 157 | let val = ''; 158 | $(".pull-right").append(val); 159 | } 160 | }); 161 | }) 162 | }); -------------------------------------------------------------------------------- /theme/darkmatter/static/js/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "Status": "状态", 3 | "Overview": "概览", 4 | "Disks": "磁盘", 5 | "Network Traffic": "网络流量", 6 | "System Log": "系统日志", 7 | "Kernel Log": "内核日志", 8 | "Processes": "进程", 9 | "Banned": "失败登录", 10 | "About": "关于", 11 | "Apps": "应用", 12 | "Dashboard": "管理面板", 13 | "Other": "其他", 14 | "System": "系统", 15 | "Administration": "安全", 16 | "Startup": "启动项", 17 | "Scheduled Tasks": "计划任务", 18 | "Tool": "工具", 19 | "Logout": "退出登录", 20 | "Hostname": "主机名称", 21 | "Firmware Version": "固件版本", 22 | "Dashboard Version": "面板版本", 23 | "Kernel Version": "内核版本", 24 | "Local Time": "当前时间", 25 | "Temperature": "温度", 26 | "Uptime": "正常运行时间", 27 | "Load Average": "平均负载", 28 | "Frequency": "频率", 29 | "System Disk": "系统磁盘", 30 | "Memory": "内存", 31 | "Free": "可用", 32 | "Buffered + Cached": "缓冲 + 缓存", 33 | "Swap": "虚拟内存", 34 | "Total Available": "总可用", 35 | "Cached": "缓存", 36 | "Network": "网络", 37 | "IPv4 WAN Status": "IPv4 WAN 状态", 38 | "IPv6 WAN Status": "IPv6 WAN 状态", 39 | "Active Connections": "活动连接", 40 | "Wireless": "无线", 41 | "setingNav":[ 42 | { 43 | "id": "qb_web_link", 44 | "value": 1 45 | }, 46 | { 47 | "id": "tr_web_link", 48 | "value": 1 49 | }, 50 | { 51 | "id": "fm_web_link", 52 | "value": 1 53 | }, 54 | { 55 | "id": "gbr_web_link", 56 | "value": 1 57 | }, 58 | { 59 | "id": "jf_web_link", 60 | "value": 1 61 | }, 62 | { 63 | "id": "sync_web_link", 64 | "value": 1 65 | } 66 | ], 67 | "addNav": [ 68 | { 69 | "name": "Docker", 70 | "url": ":9000", 71 | "protocol":"http://" 72 | }, 73 | { 74 | "name": "ROM", 75 | "url": "http://rom.nanodm.net/" 76 | } 77 | ] 78 | } -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/aria2-extra.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/aria2-extra" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 | 17 | 18 |
19 |
20 |

Aria2配置

21 |
在这里,配置Aria2。 22 |
23 |
24 | Aria2 25 | 26 | 37 |
38 | 39 |
40 | 41 |
42 | HTTP配置 43 | 44 |
45 | 46 |
47 | 48 |
49 | 50 |
51 |
52 | 53 |
54 | 55 |
56 | 57 |
58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 |
66 | 67 |
68 | 69 |
70 | 71 |
72 |
73 | 74 |
75 | 76 |
77 | 78 |
79 |
80 | 81 |
82 | 83 |
84 | 85 | 最大值 16 86 |
87 |
88 | 89 |
90 | 91 |
92 | 93 | 最大值 16 94 |
95 |
96 | 97 |
98 |
99 | 100 |
101 | BT配置 102 | 103 |
104 | 105 |
106 | 107 |
108 | 109 | 111 | 默认 16888 112 | 113 | 114 |
115 |
116 | 117 |
118 | 119 |
120 | 121 | PT需要禁用 122 |
123 |
124 | 125 |
126 | 127 |
128 | 129 | PT需要禁用 130 |
131 |
132 | 133 |
134 | 135 |
136 | 137 | PT需要禁用 138 |
139 |
140 | 141 |
142 | 143 |
144 | 145 |
146 |
147 | 148 |
149 | 150 |
151 | 152 |
153 |
154 | 155 |
156 | 157 |
158 | 159 |
160 |
161 | 162 |
163 | 164 |
165 | 166 | 当种子的分享率达到这个数时, 自动停止做种, 0为一直做种 167 |
168 |
169 | 177 |
178 | 179 |
180 | 181 |
182 |
183 |
184 | 185 |
186 | 187 |
188 |
189 |
190 | 191 |
192 | 193 |
194 |
195 | 196 | 197 |
198 |
199 | 200 |
201 | 202 |
203 |
204 |
205 | 206 | 207 |
208 | 209 | 210 | 223 | 224 | {{template "common/footer"}} 225 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/aria2-log.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/aria2-log" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

Aria2配置

10 |
Aria2运行日志 11 |
12 |
13 | Aria2日志 14 | 15 | 26 | 27 | 28 |
29 | 30 |
31 | 32 |
33 | 34 |
35 |
36 |
37 | 38 | {{template "common/footer"}} 39 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/aria2.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/aria2" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 | 17 | 18 |
19 |
20 |

Aria2配置

21 |
在这里,配置Aria2。 22 |
23 |
24 | Aria2 25 | 26 | 37 | 38 | 39 |
40 | 41 |
42 | 43 |
44 | 45 |
46 | 47 | Web UI 48 |
49 |
50 |
51 | 52 |
53 | 58 | 请参考 --force-save 59 |
60 |
61 |
62 | 63 |
64 | 66 | 默认 6800 67 |
68 | 69 |
70 | 71 |
72 | 73 |
74 | 76 |
77 |
78 | 79 |
80 | 81 |
82 |
83 | 84 | 85 |
86 | 87 |
88 | 安全设置 89 | 90 |
91 | 92 |
93 | 94 |
95 | 100 |
101 |
102 | 103 |
104 | 105 |
106 | 108 | 111 | 连接格式:http://token:xxxxxx@host:port/jsonrpc 112 |
113 |
114 | 115 | 116 |
117 |
118 | 119 |
120 | 磁盘配置 121 | 122 |
123 | 124 |
125 | 126 |
127 | 129 | 默认 256M 130 |
131 |
132 | 133 |
134 |
135 |
136 |
137 | 138 | 139 |
140 |
141 | 142 | 182 | 183 | {{template "common/footer"}} 184 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/dashboard-cert.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/dashboard-cert" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |
10 | 11 | 12 | 13 |
14 |
15 |

Dashboard配置

16 |
在这里您可以配置SSL证书。 17 |
18 |
19 | WEB参数 20 | 21 | 34 | 35 |
36 | 37 |
38 | 39 |
40 | 41 |
42 | 43 |
44 |
45 | 46 |
47 | 48 |
49 | 50 |
51 |
52 |
53 | 54 | 55 |
56 |
57 | 58 |
59 | 60 |
61 |

SSL Key

62 |
这是ssl.key的内容
63 |
64 | 65 |
66 |
67 |
68 | 69 |
70 |
71 | 72 |
73 |
74 | 75 |
76 |
77 |
78 | 79 |
80 |

SSL Cert

81 |
这是ssl.crt的内容
82 |
83 | 84 |
85 |
86 |
87 | 88 |
89 |
90 |
91 |
92 |
93 |
94 | 95 |
96 | 97 |
98 |
99 | 105 |
106 | 107 | 127 | 128 | {{template "common/footer"}} 129 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/dashboard-log.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/dashboard-log" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

Dashboard配置

10 |
在这里,您可以查看Dashboard运行日志 11 |
12 |
13 | 日志 14 | 15 | 28 | 29 | 30 |
31 | 32 |
33 | 34 |
35 | 36 |
37 |
38 |
39 | 40 | {{template "common/footer"}} 41 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/dashboard.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/dashboard" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |

Dashboard配置

18 |
在这里您可以配置Dashboard的各项参数。 19 |
20 | 21 | 24 | 25 |
26 | WEB参数 27 | 28 | 41 | 42 | 43 |
44 | 45 |
46 | 47 | 48 |
49 | 50 |
51 | 53 |
54 |
55 | 56 |
57 | 58 |
59 | 60 | 62 | 默认 80 63 |
64 |
65 | 66 |
67 | 68 |
69 | 71 | 默认 443 72 |
73 |
74 | 75 |
76 | 77 |
78 | 80 |
81 |
82 | 83 |
84 | 85 |
86 |
87 | 88 | 89 |
90 |
91 | 扩展配置 92 | 93 |
94 | 95 |
96 | 97 |
98 | 103 |
104 |
105 | 106 |
107 | 108 |
109 | 110 | 112 | 默认 8084 113 |
114 |
115 | 116 |
117 | 118 |
119 | 121 | 默认 8444 122 |
123 |
124 | 125 |
126 |
127 | 128 |
129 | 130 | 131 |
132 |
133 |
134 | 135 | 136 |
137 |
138 | 139 | 199 | 200 | {{template "common/footer"}} 201 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/frp-log.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/frp-log" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

FRP

10 |
您可以查看FRPC运行日志 11 |
12 |
13 | 日志 14 | 15 | 26 | 27 | 28 |
29 | 30 |
31 | 32 |
33 | 34 |
35 |
36 |
37 | 38 | {{template "common/footer"}} 39 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/frp-proxies.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/frp-proxies" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 |
14 |
15 | 16 | 17 | 18 |
19 |
20 |

FRP

21 |
在这里您可以配置frpc客户端。
22 |
23 | 代理设置 24 | 25 | 37 |
38 | 39 |
40 | 41 | 42 | 43 | 54 | 55 | 56 | 64 | 65 | 66 | 72 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 |
57 | 63 | 67 | 71 | 73 | 77 |
名称类型本地IP本地端口加密压缩远程端口主机头/自定义二级域名操作
名称类型本地IP本地端口加密压缩远程端口主机头/自定义二级域名操作
109 | 110 |
111 | 112 |
113 | 114 |
115 |
116 |
117 |
118 | 122 |
123 | 124 | 125 | 238 | 239 | {{template "common/footer"}} 240 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/nfsd.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/nfsd" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |

NFSD配置

18 |
19 | Android安装示例: 20 |
busybox mount -o ro,noatime,nolock,hard,intr,rsize=32768,wsize=32768,vers=3 -t nfs 192.168.8.108:/srv/nfs/music /mnt/music
21 | 22 | 您也可以使用bind方法:编辑/etc/fstab, 添加: 23 |
/media/mydisk/music /srv/nfs/music  none   bind   0   0
24 | 允许的客户端,可用三种方式填写此字段:
25 | 1.单主机IP,仅允许指定IP访问;
26 | 2.通配符*,允许所有访问;
27 | 3.IP范围192.168.1.1/200,仅允许指定IP范围内的访问。 28 |
29 |
30 | NFS规则 31 | 32 |
33 | 34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
挂载的完整路径允许客户端NFS参数操作
挂载的完整路径允许客户端NFS参数操作
61 | 62 |
63 | 64 |
65 | 66 |
67 |
68 |
69 |
70 | 74 |
75 | 76 | 77 | 195 | 196 | {{template "common/footer"}} 197 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/other-docker.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-docker" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
Docker配置
17 |
18 | Docker 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 56 |
57 |
58 | 59 |
60 | 61 |
62 | 63 | Docker UI 64 |
65 |
66 | 67 |
68 | 69 |
70 | 72 | 默认 9000 (需要安装Docker UI才能生效) 73 |
74 |
75 | 76 |
77 | 78 |
79 | 81 | 默认 /var/lib/docker 82 |
83 |
84 | 85 |
86 | 87 |
88 | {{range $index, $mirrorServer := index $.dockerCfg "registry-mirrors" }} 89 |
90 | 91 | 添加 删除 92 |
93 | {{end}} 94 |
95 |
96 | 97 |
98 |
99 |
100 |
101 |
102 |
103 | 104 | 105 |
106 | 107 |
108 | 109 | 172 | 173 | {{template "common/footer"}} 174 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/other-fm.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-fm" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
Filemanager配置
17 |
18 | Filemanager 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | Web UI 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 | 默认 8081 58 |
59 |
60 | 61 |
62 | 63 |
64 | 66 | 默认 /media 67 |
68 |
69 | 70 |
71 |
72 |
73 |
74 |
75 |
76 | 77 | 78 |
79 | 80 |
81 | 82 | 128 | 129 | {{template "common/footer"}} 130 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/other-gerbera.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-gerbera" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
Gerbera is an UPnP Media Server.
17 |
18 | Gerbera 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | Web UI 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 | 默认 /var/lib/gerbera/config.xml 58 |
59 |
60 | 61 |
62 | 63 |
64 | 66 | 默认 /var/lib/gerbera 67 |
68 |
69 | 70 |
71 | 72 |
73 | 75 | 绑定的端口, 必须>=49152, 默认 49152 76 |
77 |
78 | 79 | 80 |
81 | 82 |
83 | 85 | 默认 root 86 |
87 |
88 | 89 | 90 |
91 | 92 |
93 | 95 | 98 | 默认 root 99 |
100 |
101 | 102 | 103 |
104 | 105 |
106 | 108 | 默认 N1-DLNA 109 |
110 |
111 | 112 |
113 |
114 |
115 |
116 |
117 |
118 | 119 | 120 |
121 | 122 |
123 | 124 | 170 | 171 | {{template "common/footer"}} 172 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/other-jellyfin.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-jellyfin" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
jellyfin is an UPnP Media Server.
17 |
18 | Jellyfin 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | Web UI 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 | 默认 8096 58 |
59 |
60 | 61 | 62 |
63 | 64 |
65 | 67 |
68 |
69 | 70 | 71 |
72 | 73 |
74 | 76 | 请将此目录设置为外部硬盘。 77 |
78 |
79 | 80 |
81 |
82 |
83 |
84 |
85 |
86 | 87 | 88 |
89 | 90 |
91 | 92 | 138 | 139 | {{template "common/footer"}} 140 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/other-sync.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/other-sync" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

other其他配置

16 |
Syncthing配置
17 |
18 | Syncthing 19 | 20 | 40 | 41 |
42 |
43 | 44 |
45 | 46 |
47 | 48 | Web UI 49 |
50 |
51 | 52 |
53 | 54 |
55 | 57 | 默认 8384 58 |
59 |
60 | 61 |
62 | 63 |
64 | 66 | 默认 /var/lib/syncthing 67 |
68 |
69 | 70 |
71 |
72 |
73 |
74 |
75 |
76 | 77 | 78 |
79 | 80 |
81 | 82 | 129 | 130 | {{template "common/footer"}} 131 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/qb-log.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/qb-log" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

qBittorrent配置

10 |
在这里,查看qBittorrent运行日志。 11 |
12 |
13 | qBittorrent 14 | 15 | 23 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 |
32 |
33 |
34 | 35 | {{template "common/footer"}} 36 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/qb.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/qb" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 |
10 |
11 |

qBittorrent配置

12 |
在这里,配置您的qBittorrent。 13 |
14 |
15 | qBittorrent 16 | 17 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |
32 | 33 | 41 |
42 | 43 | 44 | 51 | 52 |
53 | 54 |
55 | 57 |
58 |
59 | 60 |
61 | 62 |
63 | 65 |
66 |
67 | 68 |
69 | 70 |
71 | 73 | 默认 false 74 |
75 |
76 | 77 |
78 | 79 | 80 |
81 | 83 | 默认 8083 84 |
85 |
86 | 87 |
88 |
89 | 90 |
91 |
92 |
93 |
94 | 95 | 96 |
97 |
98 | 99 | 124 | {{template "common/footer"}} 125 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/smb-log.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/smb-log" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

Samba配置

10 |
在这里,您可以查看Samba运行日志 11 |
12 |
13 | Samba 14 | 15 | 29 | 30 | 31 |
32 | 33 |
34 | 35 |
36 | 37 |
38 |
39 |
40 | 41 | {{template "common/footer"}} 42 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/smb-users.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/smb-users" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 |
10 |
11 | 12 | 13 | 14 |
15 |
16 |

Samba配置

17 |
18 | 在这里,您可以新增/删除 Samba用户 19 |
20 |
21 | Samba 22 | 23 | 37 | 38 | 39 |
40 |
注意:Samba用户密码与系统用户的密码无关。
41 |
42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | {{range $smbuser := $.smbusers}} 61 | 62 | 63 | 68 | 69 | 74 | 75 | 84 | 85 | 90 | 91 | 97 | 98 | 105 | 106 | 107 | {{end}} 108 | 109 |
用户名uid状态最后更新时间重置密码操作
64 |
65 | {{ $smbuser.Name }} 66 |
67 |
70 |
71 | {{ $smbuser.Uid }} 72 |
73 |
76 |
77 | {{ if $smbuser.Flags.DisabledFlag }} 78 | 已禁用 79 | {{ else }} 80 | 正常 81 | {{ end }} 82 |
83 |
86 |
87 | {{ $smbuser.LCT }} 88 |
89 |
92 |
93 | 94 | 95 |
96 |
99 |
100 | 101 | 102 | 103 |
104 |
110 | 111 |
112 |
113 | 114 | 115 |
116 | 117 | 118 |
119 |
120 |
121 |
122 | 123 |
124 | 添加新用户 125 |
126 | 127 | 128 |
129 |
130 | 添加新Samba用户 131 |
132 |
133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 149 | 150 | 155 | 156 |
用户名密码
145 |
146 | 147 |
148 |
151 |
152 | 153 |
154 |
157 |
158 |
159 |
160 | 161 | 162 |
163 |
164 |
165 | 166 | 167 | 168 | 196 | {{template "common/footer"}} 197 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/smb.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/smb" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 |
10 |
11 | 12 | 13 | 14 |
15 |
16 |

Samba配置

17 |
在这里,配置samba访问 18 |
19 |
20 | Samba 21 | 22 | 36 | 37 | 38 |
39 | 40 |
41 | 42 |
43 | 44 |
45 | 46 | 47 |
48 |
49 | 50 | 51 |
52 | 53 |
54 | 56 | 默认 WORKGROUP 57 |
58 |
59 | 60 |
61 | 62 |
63 | 65 | 默认 phicomm-n1 66 |
67 |
68 | 69 |
70 | 71 |
72 | 74 | 默认 phicomm-n1 75 |
76 |
77 | 78 |
79 | 80 |
81 | 83 | 默认 eth0 wlan0 84 |
85 |
86 | 87 |
88 | 89 |
90 | 92 | 默认 no 93 |
94 |
95 | 96 |
97 | 98 |
99 | 101 | 数字(0-10), 0 表示无, 3 相当。默认 0 102 |
103 |
104 | 105 |
106 | 107 |
108 | 110 | 默认值为5(单位KB)。日志超过此大小后,文件将重命名为.bak并建立新的日志文件。 111 |
112 |
113 | 114 |
115 | 116 |
117 | 119 | 默认 CP936 120 |
121 |
122 | 123 |
124 | 125 |
126 | 128 | 部分Android设备需要启用 129 |
130 |
131 |
132 | 133 |
134 |
135 | 136 | 137 |
138 | 139 |
140 |
141 |
142 | 143 | 144 |
145 |
146 | 147 | 148 | 166 | {{template "common/footer"}} 167 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/appcfg/transmission.html: -------------------------------------------------------------------------------- 1 | {{ define "appcfg/transmission" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |

Transmission配置

15 |
在这里,配置您的Transmission 16 |
17 |
18 | Transmission 19 | 20 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 | 38 |
39 | 40 | 41 |
42 | 43 |
44 | 46 | 默认 51413 47 |
48 |
49 | 50 |
51 | 52 |
53 | 55 | 默认 9091 56 |
57 | 58 |
59 |
60 | 61 |
62 | 64 |
65 |
66 | 67 |
68 | 69 |
70 | 72 | 73 |
74 |
75 | 76 |
77 | 78 |
79 | 84 |
85 |
86 | 87 |
88 | 89 |
90 | 92 |
93 |
94 | 95 |
96 | 97 |
98 | 103 |
104 |
105 | 106 |
107 | 108 |
109 | 111 |
112 |
113 | 114 |
115 | 116 |
117 | 119 |
120 |
121 | 122 |
123 |
124 |
125 | 126 | 127 |
128 | 129 |
130 |
131 |
132 | 133 | 134 |
135 |
136 | 137 | 193 | 194 | {{template "common/footer"}} 195 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/public/login.html: -------------------------------------------------------------------------------- 1 | {{ define "public/login" }} 2 | 3 | 4 | 5 | 6 | 7 | 登录 - HacklogDashboard 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 89 | 90 | 91 | 92 | 93 |
94 | 95 |
96 |
97 |
98 | 99 |

Nano Disk Manager

100 | 101 |
102 | 103 |
104 | 105 |
106 |
107 |
108 | 109 |
110 | 111 |
112 |
113 | 114 |
115 | 116 |
117 | 118 |
119 | 120 |
121 |
122 | 123 | 127 | 128 | 129 | 130 | 131 | 192 | 193 | 194 | 195 | {{ end }} 196 | -------------------------------------------------------------------------------- /theme/darkmatter/templates/status/banned.html: -------------------------------------------------------------------------------- 1 | {{ define "status/banned" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 6 | 7 | 8 | 11 | 16 | 17 |
18 |

登录失败日志

19 |
客户端登录失败次数 > 5,将被禁止1小时。 20 |
21 |
22 | 登录失败的客户端 23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
IP失败次数禁止时间地区行政区城市
40 | 41 |
42 | 43 |
44 | 45 |
46 |
47 |
48 |
49 | 53 |
54 | 55 | 77 | 78 | {{template "common/footer"}} 79 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/status/dmesg.html: -------------------------------------------------------------------------------- 1 | {{ define "status/dmesg" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |

内核日志

9 |
10 | 11 |
12 | 13 | {{template "common/footer"}} 14 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/status/processes.html: -------------------------------------------------------------------------------- 1 | {{ define "status/processes" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

进程

10 |
此列表包含当前正在运行的系统进程及状态。
11 | 12 |
13 |
14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 35 | 36 | {{range $proc := $.processes}} 37 | 38 | 43 | 44 | 49 | 50 | 51 | 56 | 57 | 58 | 63 | 64 | 65 | 70 | 71 | 92 | 93 | {{end}} 94 | 95 |
PID所有者命令CPU使用率(%)内存使用率(%)
39 |
40 | {{ $proc.Pid }} 41 |
42 |
45 |
46 | {{ $proc.Username }} 47 |
48 |
52 |
53 | {{ $proc.Cmdline }} 54 |
55 |
59 |
60 | {{ $proc.CpuPercent | printf "%.2f" }}% 61 |
62 |
66 |
67 | {{ $proc.MemPercent | printf "%.2f" }}% 68 |
69 |
96 | 97 |
98 |
99 | 100 |
101 |
102 | 103 | {{template "common/footer"}} 104 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/status/syslog.html: -------------------------------------------------------------------------------- 1 | {{ define "status/syslog" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |

系统日志

9 |
10 | 11 |
12 | 13 | {{template "common/footer"}} 14 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/status/traffic.html: -------------------------------------------------------------------------------- 1 | {{ define "status/traffic" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 29 | 30 |
31 |

网络流量

32 |
网络流量图表 33 |
34 |
35 | 36 |
37 |

38 |

41 |

44 |

47 |

50 |

51 |

52 | 54 | 56 |

57 |
58 |

接口

59 | 64 |
65 |

总流量

66 | TX: 0 GB
67 | RX: 0 GB
68 |
69 |

运行时间

70 | 0min 71 |
72 |

数据库

73 | 创建时间:

74 | 更新时间:

75 | 76 |
77 |
78 |
79 |
80 |
81 | 82 |
83 | 84 | 85 | 86 |
时间TX发送RX接收比例合计
87 |
88 |
89 | 90 | 91 | 92 |
时间TX发送RX接收比例合计
93 |
94 |
95 | 96 | 97 | 98 |
时间TX发送RX接收比例合计
99 |
100 |
101 | 102 | 103 | 104 |
时间TX发送RX接收比例合计
105 |
106 |
107 | 108 |
109 | 110 | {{template "common/footer"}} 111 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/admin.html: -------------------------------------------------------------------------------- 1 | {{ define "system/admin" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 |
9 |

Root密码

10 |
更改root管理员密码,用于NDM小钢炮管理面板、ssh登录。建议设置高强度密码,提升系统安全性。
11 |
12 | 13 | 14 |
15 | 16 | 17 |
18 | 19 |
20 | 21 | 22 | 25 |
26 |
27 | 28 |
29 | 30 |
31 | 33 | 36 | 37 |
38 | 39 |
40 | 41 | 42 |
43 |
44 | 45 |
46 | 47 | 48 |
49 |
50 | 51 |
52 |
53 |

SSH 访问

54 |
Dropbear进程提供 SSH网络shell访问和SCP服务。 55 |
56 |
57 | Dropbear配置 58 | 59 |
60 | 61 | 62 |
63 | 64 |
65 | 66 | 68 |
69 |
70 | help 71 | 指定Dropbear监听端口。 72 |
73 |
74 |
75 | 76 | 77 |
78 | 79 |
80 | 84 |
85 |
86 | 87 |
88 | 89 |
90 | 92 |
93 |
94 | help 95 | 指定UPnP外部端口 96 |
97 |
98 |
99 | 100 |
101 |
102 | 103 |
104 |
105 | SSH-Keys 106 |
107 | 此处可以粘贴公共SSH密钥(每行一个)以进行SSH公钥验证。用于复制当前用户公钥的可用命令: 108 |
109 | #linux
110 | xclip -sel clip < ~/.ssh/id_rsa.pub
111 | 
112 | # in case you get a display null error
113 | DISPLAY=:0 xclip -sel clip < ~/.ssh/id_rsa.pub
114 | 
115 | # osx
116 | pbcopy < ~/.ssh/id_rsa.pub
117 |                 
118 |
119 |
120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 135 | 136 | 137 |
129 |
130 | 133 |
134 |
138 | 139 |
140 |
141 | 142 | 143 | 144 |
145 |
146 |
147 | 148 | 149 |
150 |
151 | 152 | 153 | 185 | {{template "common/footer"}} 186 | {{ end }} 187 | 188 | -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/crontab.html: -------------------------------------------------------------------------------- 1 | {{ define "system/crontab" }} 2 | {{template "common/header" }} 3 | 6 | 12 |
13 |
14 |

任务计划

15 |
16 | 系统crontab任务计划程序可让您计划并在预定的时间运行服务或脚本。
17 | 注意:如果crontab文件在编辑之前为空,则需要手动重新启动cron服务。
18 |
*	(星号)代表任何时刻都接受
19 | ,	(逗号)代表分割时段的意思
20 | -	(减号)代表一段时间范围内
21 | /	(斜线)代表指定时间间隔的运行频率
22 |
参考: https://www.cnblogs.com/liwei0526vip/p/4873104.html
23 | https://www.cnblogs.com/intval/p/5763929.html
24 | ┌───────────── 分钟 (0 - 59)
25 | │ ┌───────────── 小时 (0 - 23)
26 | │ │ ┌───────────── 日期 (1 - 31)
27 | │ │ │ ┌───────────── 月份 (1 - 12)
28 | │ │ │ │ ┌───────────── 周 (0 - 6) (星期天到星期六;某些系统7也是星期天)
29 | │ │ │ │ │
30 | * * * * * 任务的完整命令
31 | 参考工具: 32 | https://crontab.guru/ 33 | http://corntab.com/ 34 |
35 |
36 |
37 |
38 |
39 | 42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 | 51 | 52 |
53 |
54 | 55 | 68 | {{template "common/footer"}} 69 | {{ end }} 70 | -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/startup.html: -------------------------------------------------------------------------------- 1 | {{ define "system/startup" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 |
21 |
22 | 23 | 24 |
25 | 26 |
27 |

初始化脚本

28 |
您可以启用或禁止已安装的init脚本,设备重启后将应用更改。
警告:如果禁用"S99dashboard",WEB UI管理页面将无法访问!
29 | 30 |
31 |
32 |
33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | {{ range $k,$service := $.SysvInitList }} 52 | 53 | 56 | 57 | 58 | 62 | 63 | 64 | 68 | 69 | 70 | 75 | 76 | 80 | 81 | 82 | 86 | 87 | {{end}} 88 | 89 |
启动优先级脚本路径是否开机启动启动重启停止
54 | {{ $service.Priority }} 55 | 59 | /etc/init.d/{{ $service.InitName }} 60 | 61 | 65 | 67 | 71 | 73 | 74 | 77 | 79 | 83 | 85 |
90 | 91 |
92 |
93 | 94 |
95 |
96 | 97 |
98 | 99 | 100 |
101 |
102 |

新增启动项

103 |
编辑/etc/rc.local,插入你自己的命令(必须'exit 0'在前插入)在开机成功后将会执行它们。 104 |
105 |
106 | 107 |
108 |
109 |
110 | 111 |
112 | 113 | 114 |
115 | 116 |
117 |
118 |
119 |
120 |
121 |
122 | 123 | 124 |
125 |
126 | 127 | 201 | {{template "common/footer"}} 202 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/system-network.html: -------------------------------------------------------------------------------- 1 | {{ define "system/network" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 8 | 9 |
10 |
11 | 12 | 13 | 14 |
15 |
16 |

系统

17 |
在这里,配置您的网卡。 18 |
19 |
20 | 网络 21 | 22 | 26 | 27 | 28 |
29 | 30 |
31 | 32 |
33 | 34 |
35 | 39 |
40 |
41 | 42 |
43 | 44 |
45 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 56 |
57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 |
65 | 66 |
67 | 68 |
69 | 70 |
71 |
72 | 73 |
74 | 75 |
76 | 77 |
78 |
79 | 80 |
81 |
82 | 83 |
84 |
85 | 86 | 87 |
88 |
89 |
90 | 91 | 92 |
93 |
94 | 95 | 120 | {{template "common/footer"}} 121 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/system.html: -------------------------------------------------------------------------------- 1 | {{ define "system/system" }} 2 | {{template "common/header" }} 3 | 4 | 5 | 6 | 7 | 10 | 11 |
12 |
13 | 14 | 15 | 16 |
17 |
18 |

系统

19 |
在这里,您可以配置系统 20 |
21 |
22 | 系统 23 | 24 | 28 | 29 | 30 |
31 | 32 |
33 | 34 |
35 | 36 |
37 | 38 |
39 |
40 | 41 |
42 | 43 |
44 | 45 |
46 |
47 | 48 |
49 | 50 | 54 |
55 | 56 |
57 | 58 |
59 | 60 | 61 |
62 |
63 | 64 |
65 | 66 |
67 | 68 |
69 |
70 | 71 |
72 | 73 |
74 | ntp status 75 | 76 | 77 | 78 |
79 |
80 | 81 |
82 | 83 |
84 | {{range $index, $ntpServer := $.NtpServers }} 85 |
86 | 87 |
88 | {{end}} 89 |
90 |
91 |
92 |
93 | 94 |
95 |
96 | 97 | 98 |
99 |
100 |
101 | 102 | 103 |
104 |
105 | 106 | 222 | 223 | 224 | 232 | 233 | {{template "common/footer"}} 234 | {{ end }} -------------------------------------------------------------------------------- /theme/darkmatter/templates/system/tool.html: -------------------------------------------------------------------------------- 1 | {{ define "system/tool" }} 2 | {{template "common/header" }} 3 | 4 | 7 | 8 | 44 | 45 |

Tool工具

46 |
47 |

48 | 51 | 52 | 55 | 56 |

57 | 58 |
59 | 60 | 端口测试 61 | 62 | 64 | 65 |
66 |
67 |

68 | 6 / 6 69 |

70 |
71 | 72 |
73 |

系统安全性评分 0%

74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 87 | 88 | 89 | 90 | 91 | 94 | 95 | 96 | 97 | 98 | 101 | 102 | 103 | 104 | 105 | 108 | 109 | 110 | 111 | 112 | 115 | 116 | 117 | 118 | 119 | 122 | 123 |
项目结果
Root密码安全性- 85 | 86 |
qBittorrent密码安全性- 92 | 93 |
Transmission密码安全性- 99 | 100 |
Aria2密码安全性- 106 | 107 |
qBittorrent已配置- 113 | 114 |
Transmission已配置- 120 | 121 |
124 |
125 |
126 | 127 |
128 | 189 | {{template "common/footer"}} 190 | {{ end }} --------------------------------------------------------------------------------