@alemonjs/qq-bot
TypeScript icon, indicating that this package has built-in type declarations

0.0.12 • Public • Published

USE

  • qq-bot
yarn add @alemonjs/qq-bot
  • alemon.config.yaml
qq-bot:
  # 编号
  app_id: ''
  # 令牌
  token: ''
  # 密钥
  secret: ''
qq-bot:
  master_key:
    - ''
  # 默认 推荐nginx进行代理 http://localhost:17157/webhook
  route: '/webhook'
  port: 17157
  # 当配置ws的时候,会连接另一台hook机器人的消息。不会再启动本地端口。
  # 推荐nginx进行代理 http://localhost:17157/
  # wss://xxxx/websocket
  ws: ''
  # 频道沙盒
  sandbox: false
 server {
        listen       443 ssl http2;
        server_name  bundle.com;
        ssl_certificate /usr/local/nginx/bundle.crt;
        ssl_certificate_key /usr/local/nginx/bundle.key;

        location /webhook {
          # 指向 webhook 服务的端口
          proxy_pass http://localhost:17157;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Forwarded-Proto $scheme;
        }

        location /websocket {
           # 指向 WebSocket 服务的端口
           proxy_pass http://localhost:17157;
           proxy_http_version 1.1;
           proxy_set_header Upgrade $http_upgrade;
           proxy_set_header Connection "upgrade";
           proxy_set_header Host $host;
           proxy_set_header X-Real-IP $remote_addr;
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
           proxy_set_header X-Forwarded-Proto $scheme;
        }
}

Readme

Keywords

Package Sidebar

Install

npm i @alemonjs/qq-bot

Weekly Downloads

0

Version

0.0.12

License

MIT

Unpacked Size

310 kB

Total Files

41

Last publish

Collaborators

  • ningmengchongshui