mirror of
https://github.com/taigrr/github-to-signal.git
synced 2026-04-02 03:09:09 -07:00
- signal-cli-bot.service: runs signal-cli daemon on 127.0.0.1:8081 - github-to-signal.service: depends on signal-cli-bot, auto-starts it - nginx reverse proxy with TLS termination - README updated with full deployment instructions
24 lines
413 B
Desktop File
24 lines
413 B
Desktop File
[Unit]
|
|
Description=GitHub webhook to Signal notifications
|
|
After=signal-cli-bot.service
|
|
Requires=signal-cli-bot.service
|
|
|
|
[Service]
|
|
Type=exec
|
|
ExecStart=/usr/local/bin/github-to-signal
|
|
WorkingDirectory=/etc/github-to-signal
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
|
|
# Hardening
|
|
NoNewPrivileges=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
PrivateTmp=true
|
|
|
|
User=signal-bot
|
|
Group=signal-bot
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|