15 lines
371 B
SYSTEMD
15 lines
371 B
SYSTEMD
|
[Unit]
|
||
|
Description=Buzon - MQTT Webhook Delivery Service
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Environment="BUZON_CONFIG=/etc/buzon/buzon.yaml"
|
||
|
EnvironmentFile=/etc/sysconfig/noggin
|
||
|
EnvironmentFile=/etc/buzon/buzon.yaml
|
||
|
ExecStart=/usr/bin/uvicorn --host ${BUZON_HOST} --port ${BUZON_PORT} buzon.app:app
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
|