WebHook接口传入参数并交给shell执行

参考文档1:https://blog.csdn.net/lswzw/article/details/106917430 参考文档2:https://stackoverflow.com/questions/67300515/rundeck-webhook-to-pass-an-argument-to-a-shell-script WebHook部署按此执行即可:https://teddyou.com/?id=144新建一个json文件,作为WebHook启动配置文件,以下为实例:[   阅读全部

WebHook接口部署入门内容,简易脚本实现

项目地址:https://github.com/adnanh/webhook官方文档:https://github.com/adnanh/webhook/tree/master/docs为什么会使用Webhook?Webhook是一个可以用于前后端自动化交互的一个手段,通过http就可以实现前后端交互,以及和其他网站的协同交互,规则触发实现自动化运维等。我是近期了解到Webhook的,此处简单记录学习笔记。Webhook部署:进入项目地址下载对应版本再放入自定义目录即可,没有什么好说的。如果是编 阅读全部

centos下通过gcc编译安装一份rcon工具

来源:https://blog.csdn.net/u011558418/article/details/104673520新建文件rcon.c ,输入以下C代码:/* # This is a simple linux command line utility to execute rcon commands # Just change the& 阅读全部

分享几个关于战术小队日志分析实战的脚本

双方换边脚本:#!/bin/bash /usr/bin/rcon -Ppswd -p21114 AdminBroadcast 服务器双方换边脚本启动 sleep 3 /usr/bin/rcon -Ppswd -p21114  ListPlayers |grep -Ev "Active Players"\|Disconnect > 阅读全部

利用RCON和CGI实现前后端交互管理

html代码示例:<div style="color:#4682B4;text-align:center;">             <a name="top" id="top_anchor">      &n 阅读全部

squad战术小队游戏服务器部署

部署环境 Centos7


部署参考文档:https://squad.fandom.com/wiki/Server_Installation/zh#Linux


阅读全部

利用nginx和VLC&FLV自建直播服务器并实现播放

服务器环境:Centosnginx-rtmp-module项目地址:https://github.com/arut/nginx-rtmp-module 方法参考:https://www.nginx.org.cn/article/detail/259此方法需要使用nginx插件,通过对nginx本体的编译安装实现。编译安装命令./configure --user=nginx --group=nginx  --prefix=/home/nginx-rtmp/rtmp& 阅读全部

docker端口映射和路径挂载

启动容器时的端口映射:docker run -t -p 2060:9987/udp -d 667feef757d1解释:-p 外部端口:内部端口/协议 -d(无服务不停止) 容器ID路径挂载:语法 -v /主机路径:/容器内路径举例:docker run -t -p 2060:9987/udp -v /home/docker:/2060 -d 667feef 阅读全部

nginx的upstream模块http代理示例。

示例1:        upstream wssh {                 hash $remote_addr consistent;      &nbs 阅读全部

TeamSpeak3语音服务器部署手册

服务器配置要求较低,2M带宽可以负载32人在线。内存和CPU按照1U1G最低需求配置即可。服务器操作系统:Centos7服务器包下载:https://teamspeak.com/zh-CN/downloads/#server服务器图标:https://tsicons.com/下载选择Linux 64-BIT或本地下载传输给服务器,或服务器直接使用以下命令下载:[root@cd3 ~]# wget https://files.teamspeak-services.co 阅读全部