mirror of
https://github.com/9001/copyparty.git
synced 2025-08-16 00:22:13 -06:00
* move service files from contrib/package/arch/ to /contrib/systemd/ * add simpler default copyparty.conf that puts users in jail * remove warning about .conf files in ~/.config/copyparty/ * update PKGBUILD with changes * add links to configuration examples in index.md * fix link to the example config * update README.md arch instructions --------- Co-authored-by: icxes <icxes@dev.null@need.moe> Co-authored-by: ed <s@ocv.me>
31 lines
839 B
Desktop File
31 lines
839 B
Desktop File
# this will start `/usr/bin/copyparty`
|
|
# and read config from `/etc/copyparty/copyparty.conf`
|
|
#
|
|
# the %i refers to whatever you put after the copyparty@
|
|
# so with copyparty@foo.service, %i == foo
|
|
#
|
|
# unless you add -q to disable logging, you may want to remove the
|
|
# following line to allow buffering (slightly better performance):
|
|
# Environment=PYTHONUNBUFFERED=x
|
|
|
|
[Unit]
|
|
Description=copyparty file server
|
|
|
|
[Service]
|
|
Type=notify
|
|
SyslogIdentifier=copyparty
|
|
WorkingDirectory=/var/lib/copyparty-jail
|
|
Environment=PYTHONUNBUFFERED=x
|
|
Environment=PRTY_CONFIG=/etc/copyparty/copyparty.conf
|
|
ExecReload=/bin/kill -s USR1 $MAINPID
|
|
|
|
# user to run as + where the TLS certificate is (if any)
|
|
User=%i
|
|
Environment=XDG_CONFIG_HOME=/home/%i/.config
|
|
|
|
# run copyparty
|
|
ExecStart=/usr/bin/python3 /usr/bin/copyparty
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|