:trollface: Self-hosted, lightweight server and website monitoring and O&M tool
Go to file
2020-12-19 18:38:28 +08:00
.github/workflows 💩 2020-12-13 11:53:04 +08:00
cmd 🚸 update cdn url 2020-12-19 13:07:44 +08:00
model feat(theme): 自定义主题 2020-12-19 10:57:10 +08:00
pkg/mygin add theme hotaru 2020-12-09 19:05:40 +08:00
proto 🚚 add pb code 2020-10-24 21:46:07 +08:00
resource 🐛 fix: cpu 2020-12-19 12:52:28 +08:00
script 🚸 update cdn url 2020-12-19 13:07:44 +08:00
service Revert "测试对旧版 windows 支持的编译" 2020-12-13 11:25:30 +08:00
.gitignore 一键脚本 2020-11-29 22:17:40 +08:00
.goreleaser.yml 💩 2020-12-13 11:53:04 +08:00
Dockerfile.dashboard 🚚 from p14yground to naiba 2020-11-11 10:07:45 +08:00
go.mod Revert "测试对旧版 windows 支持的编译" 2020-12-13 11:25:30 +08:00
go.sum Revert "测试对旧版 windows 支持的编译" 2020-12-13 11:25:30 +08:00
README.md 📝 update 2020-12-19 18:38:28 +08:00

哪吒面板

服务期状态监控,被动接收,极省资源 128M 小鸡也能装 Agent非 node-exporter 那种主动拉取的方式。)

哪吒面板 首页截图1 首页截图2
哪吒面板 首页截图1

>> 查看针友列表 (Google)

一键脚本

  • 海外:

    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配置 跟 访问管理面板 使用不同的域名这样管理面板使用的域名可以直接套CDNAgent配置的域名是解析管理面板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 v1v2无需特别配置

    proxy /ws http://ip:8008 {
        websocket
    }
    

社区文章