mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
2.5 KiB
2.5 KiB
哪吒面板
服务期状态监控,被动接收,极省资源 128M 小鸡也能装 Agent(非 node-exporter 那种主动拉取的方式。)
哪吒面板 | 首页截图1 | 首页截图2 |
---|---|---|
一键脚本
-
海外:
curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh sudo ./nezha.sh
-
国内加速:
curl -L https://raw.sevencdn.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh sudo ./nezha.sh
主题自定义
-
默认主题更改进度条颜色示例
.ui.fine.progress> .bar { background-color: pink !important; }
-
hotaru 主题更改背景图片示例
.hotaru-cover { background: url(https://s3.ax1x.com/2020/12/08/DzHv6A.jpg) center; }
常见问题
数据备份恢复
数据储存在 /opt/nezha
文件夹中,迁移数据时打包这个文件夹,到新环境解压。然后执行一键脚本安装即可
启用 HTTPS
使用宝塔反代或者上CDN,建议 Agent配置 跟 访问管理面板 使用不同的域名,这样管理面板使用的域名可以直接套CDN,Agent配置的域名是解析管理面板IP使用的,也方便后面管理面板迁移(如果你使用IP,后面IP更换了,需要修改每个agent,就麻烦了)
反代配置
使用反向代理时需要针对 /ws
路径的 WebSocket 进行特别配置以支持实时更新服务器状态。
-
Nginx(宝塔):在你的 nginx 配置文件中加入以下代码
server{ #server_name blablabla... location /ws { proxy_pass http://ip:站点访问端口; 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无需特别配置)
proxy /ws http://ip:8008 { websocket }