blob: da1ae3e687f70906c9e7a4131daf58c108e09145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# vim: ft=systemd
[Unit]
Description=weron signaling server
Documentation=file:///usr/share/doc/weron/README.md
After=postgresql.service redis.service
[Service]
ExecStart=/usr/bin/weron signaler
EnvironmentFile=/etc/weron/signaler
User=weron
DynamicUser=yes
# Create a systemd override with this line if you'd like to bind to a lower port:
# AmbientCapabilities=CAP_NET_ADMIN
[Install]
WantedBy=multi-user.target
|