diff options
author | Remi Collet <remi@remirepo.net> | 2019-01-16 08:59:51 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-01-16 08:59:51 +0100 |
commit | acf99b02610aadddd42dc434c36ed3fe0b9eb5af (patch) | |
tree | e167fffd0c57bd02b1662b20509eb0e59bc2ef14 /unit.service |
initial package
open https://github.com/nginx/unit/pull/215 system crypto policy
open https://github.com/nginx/unit/pull/212 systemd improvments
Diffstat (limited to 'unit.service')
-rw-r--r-- | unit.service | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/unit.service b/unit.service new file mode 100644 index 0000000..f888685 --- /dev/null +++ b/unit.service @@ -0,0 +1,26 @@ +# Modifying this file in-place is not recommended, because changes +# will be overwritten during package upgrades. To customize the +# behaviour, run "systemctl edit unit" to create an override unit. + +# For example, to change options given to the unitd binary at startup, +# create an override unit (as is done by systemctl edit) and enter +# the following: + +# [Service] +# Environment="UNITD_OPTIONS=--log /var/log/unit/unit.log --pid /run/unit/unit.pid" + +[Unit] +Description=NGINX Unit +Wants=network-online.target +After=network-online.target + +[Service] +Type=simple +Environment="UNITD_OPTIONS=--log /var/log/unit/unit.log --pid /run/unit/unit.pid" +ExecStart=/usr/sbin/unitd $UNITD_OPTIONS --no-daemon +ExecReload= +RuntimeDirectory=unit +RuntimeDirectoryMode=0755 + +[Install] +WantedBy=multi-user.target |