2019-12-01 10:36:23 -05:00
|
|
|
|
# 哪吒面板
|
|
|
|
|
|
2020-12-07 20:51:53 -05:00
|
|
|
|
服务期状态监控,被动接收,极省资源 128M 小鸡也能装 Agent(非 node-exporter 那种主动拉取的方式。)
|
|
|
|
|
|
2020-12-09 07:26:14 -05:00
|
|
|
|
| 哪吒面板 | 首页截图1 | 首页截图2 |
|
|
|
|
|
| ---- | ---- | ---- |
|
2020-12-19 05:41:52 -05:00
|
|
|
|
| <img src="https://s3.ax1x.com/2020/12/08/DzHv6A.jpg" width="2333px" /> | ![首页截图1](https://s3.ax1x.com/2020/12/07/DvTCwD.jpg) | <img src="https://s3.ax1x.com/2020/12/09/rPF4xJ.png" width="1600px" /> |
|
2020-12-19 05:38:28 -05:00
|
|
|
|
|
|
|
|
|
\>> [查看针友列表](https://www.google.com/search?q=%22powered+by+%E5%93%AA%E5%90%92%E9%9D%A2%E6%9D%BF%22) (Google)
|
2019-12-02 10:29:00 -05:00
|
|
|
|
|
2020-11-29 09:17:40 -05:00
|
|
|
|
## 一键脚本
|
2020-11-06 07:51:23 -05:00
|
|
|
|
|
2020-12-12 10:48:34 -05:00
|
|
|
|
- 海外:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh
|
|
|
|
|
sudo ./nezha.sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- 国内加速:
|
|
|
|
|
|
|
|
|
|
```shell
|
2020-12-19 00:07:44 -05:00
|
|
|
|
curl -L https://raw.sevencdn.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh
|
2020-12-12 10:48:34 -05:00
|
|
|
|
sudo ./nezha.sh
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-19 09:14:36 -05:00
|
|
|
|
## 使用说明
|
|
|
|
|
### 自定义 CSS
|
2020-12-18 21:57:10 -05:00
|
|
|
|
|
|
|
|
|
- 默认主题更改进度条颜色示例
|
|
|
|
|
|
|
|
|
|
```
|
2020-12-18 23:43:03 -05:00
|
|
|
|
.ui.fine.progress> .bar {
|
2020-12-18 21:57:10 -05:00
|
|
|
|
background-color: pink !important;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- hotaru 主题更改背景图片示例
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
.hotaru-cover {
|
|
|
|
|
background: url(https://s3.ax1x.com/2020/12/08/DzHv6A.jpg) center;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-19 09:14:36 -05:00
|
|
|
|
### 通知
|
|
|
|
|
|
2020-12-19 10:27:59 -05:00
|
|
|
|
正在开发,进度 0%
|
2020-12-19 09:14:36 -05:00
|
|
|
|
|
2020-12-07 21:38:45 -05:00
|
|
|
|
## 常见问题
|
|
|
|
|
|
|
|
|
|
### 数据备份恢复
|
|
|
|
|
|
|
|
|
|
数据储存在 `/opt/nezha` 文件夹中,迁移数据时打包这个文件夹,到新环境解压。然后执行一键脚本安装即可
|
|
|
|
|
|
2020-12-19 05:32:45 -05:00
|
|
|
|
### 启用 HTTPS
|
|
|
|
|
|
|
|
|
|
使用宝塔反代或者上CDN,建议 Agent配置 跟 访问管理面板 使用不同的域名,这样管理面板使用的域名可以直接套CDN,Agent配置的域名是解析管理面板IP使用的,也方便后面管理面板迁移(如果你使用IP,后面IP更换了,需要修改每个agent,就麻烦了)
|
|
|
|
|
|
2020-12-07 21:38:45 -05:00
|
|
|
|
### 反代配置
|
2020-12-01 21:04:06 -05:00
|
|
|
|
|
|
|
|
|
使用反向代理时需要针对 `/ws` 路径的 WebSocket 进行特别配置以支持实时更新服务器状态。
|
|
|
|
|
|
2020-12-01 22:46:31 -05:00
|
|
|
|
- Nginx(宝塔):在你的 nginx 配置文件中加入以下代码
|
2020-12-01 21:04:06 -05:00
|
|
|
|
|
|
|
|
|
```nginx
|
|
|
|
|
server{
|
|
|
|
|
|
|
|
|
|
#server_name blablabla...
|
2020-11-06 07:51:23 -05:00
|
|
|
|
|
2020-12-01 21:04:06 -05:00
|
|
|
|
location /ws {
|
2020-12-06 20:38:10 -05:00
|
|
|
|
proxy_pass http://ip:站点访问端口;
|
2020-12-01 21:04:06 -05:00
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#其他的 location blablabla...
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- CaddyServer v1(v2无需特别配置)
|
|
|
|
|
|
|
|
|
|
```Caddyfile
|
|
|
|
|
proxy /ws http://ip:8008 {
|
|
|
|
|
websocket
|
|
|
|
|
}
|
|
|
|
|
```
|
2020-11-06 07:51:23 -05:00
|
|
|
|
|
2020-11-29 09:17:40 -05:00
|
|
|
|
## 社区文章
|
2020-11-06 07:51:23 -05:00
|
|
|
|
|
2020-12-19 03:29:57 -05:00
|
|
|
|
- [哪吒探针 - Windows 客户端安装](https://nyko.me/2020/12/13/nezha-windows-client.html)
|
2020-12-09 10:03:04 -05:00
|
|
|
|
- [哪吒面板:小鸡们的最佳探针](https://www.zhujizixun.com/2843.html) *(已过时)*
|