From 8985290a5f0f34e780be8ed23e18430a4a4a997f Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:48:34 +0530 Subject: Add systemd service for GitHub Webhook Server --- systemd/github-webhook.service | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 systemd/github-webhook.service (limited to 'systemd/github-webhook.service') diff --git a/systemd/github-webhook.service b/systemd/github-webhook.service new file mode 100644 index 0000000..1a21a3d --- /dev/null +++ b/systemd/github-webhook.service @@ -0,0 +1,15 @@ +[Unit] +Description=GitHub Webhook Server +After=network.target + +[Service] +ExecStart=/usr/local/bin/github-webhook-server +Restart=always +RestartSec=1 +User=root +Environment=GODEBUG=http2server=0 +Environment="GITHUB_TOKEN=LMAO_NO_SECRETS_HERE" +Environment="PATH=/usr/local/bin:/usr/bin:/bin" + +[Install] +WantedBy=multi-user.target -- cgit v1.2.3