chore(tooling): update deploy workflow to not need root
This commit is contained in:
parent
5ef1491d35
commit
fff45a9649
3 changed files with 12 additions and 9 deletions
|
@ -51,8 +51,8 @@ jobs:
|
||||||
umask 077
|
umask 077
|
||||||
printf '%s' "$SSH_PRIVATE_KEY" | base64 -d > private_key
|
printf '%s' "$SSH_PRIVATE_KEY" | base64 -d > private_key
|
||||||
SSHOPTS="-i private_key -o StrictHostKeyChecking=accept-new"
|
SSHOPTS="-i private_key -o StrictHostKeyChecking=accept-new"
|
||||||
rsync -e "ssh ${SSHOPTS}" ods root@ods.adyxax.org:/usr/local/bin/
|
rsync -e "ssh ${SSHOPTS}" ods ods@ods.adyxax.org:
|
||||||
ssh ${SSHOPTS} root@ods.adyxax.org "systemctl restart ods"
|
ssh ${SSHOPTS} ods@ods.adyxax.org "chmod +x ods; systemctl --user restart ods"
|
||||||
env:
|
env:
|
||||||
SSH_PRIVATE_KEY: '${{ secrets.SSH_PRIVATE_KEY }}'
|
SSH_PRIVATE_KEY: '${{ secrets.SSH_PRIVATE_KEY }}'
|
||||||
publish:
|
publish:
|
||||||
|
|
9
CHANGELOG.md
Normal file
9
CHANGELOG.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## 1.0.0 - 2025-03-15
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release.
|
|
@ -29,22 +29,16 @@ file, sorry for not sharing it.
|
||||||
|
|
||||||
## Systemd service
|
## Systemd service
|
||||||
|
|
||||||
I use this simple systemd service unit to run ODS:
|
I use this simple systemd user service unit to run ODS as an unprivileged user:
|
||||||
|
|
||||||
``` ini
|
``` ini
|
||||||
[Unit]
|
[Unit]
|
||||||
After=network-online.target
|
|
||||||
Description=ods.adyxax.org service
|
Description=ods.adyxax.org service
|
||||||
Wants=network-online.target
|
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
DynamicUser=yes
|
|
||||||
Environment="ODS_PORT=8090"
|
Environment="ODS_PORT=8090"
|
||||||
ExecStart=/usr/local/bin/ods
|
ExecStart=/usr/local/bin/ods
|
||||||
Type=simple
|
Type=simple
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Nginx reverse proxy
|
## Nginx reverse proxy
|
||||||
|
|
Loading…
Add table
Reference in a new issue