2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-11-09 22:14:59 +00:00

Add example unit file for running pict-rs

This commit is contained in:
asonix 2023-07-09 16:54:16 -05:00
parent e10cb1401d
commit b8f9c00d30

14
systemd/pict-rs.service Normal file
View file

@ -0,0 +1,14 @@
[Unit]
Description=A simple image host
Documentation=https://git.asonix.dog/asonix/pict-rs
After=network-online.target firewalld.service
[Service]
Type=simple
Environment="PICTRS__SERVER__ADDRESS=127.0.0.1:8080"
Environment="PICTRS__TRACING__LOGGING__TARGETS=warn"
Environment="PICTRS__MEDIA__FORMAT=avif"
Environment="PICTRS__REPO__PATH=/opt/pict-rs/sled"
Environment="PICTRS__STORE__PATH=/opt/pict-rs/files"
ExecStart=/usr/local/bin/pict-rs run
Restart=on-failure