1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[Unit]
Description=Varlink HTTP Proxy
Documentation=https://varlink.org
After=network.target
Requires=maildir-varlink.service
[Service]
Type=simple
ExecStart=%h/.nix-profile/bin/varlink-http-proxy \
--listen=:8080 \
--service=de.profpatsch.Maildir=unix:/run/user/%U/de.Profpatsch.Maildir
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.target
|