2

我一直在寻找一种方法来配置我的 Nginx 以监听来自 Github 的 webhook 的 POST 请求。

我在 Github 中配置了一个新的 Webhook,如下所示:

有效载荷 URL: https://myUrl/payload秘密: thisisthesecret

我的目标是告诉 Nginx:一旦你收到 POST 请求(在我的例子中是 Github webhook),如果你得到的标题匹配“thisisthesecret”然后返回“OK”并将有效负载放在 https://myUrl/payload

除了这个例子,我在网上找不到它的任何实现,所以我正在寻求你的帮助。

这是我当前的 nginx.config 文件:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}
4

0 回答 0