diff options
author | Szombathelyi György <gyurco@freemail.hu> | 2016-08-18 15:58:34 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-22 15:52:32 +0200 |
commit | 8e6425cfa130a181b22077aa9153704c229ed4d7 (patch) | |
tree | 5b6933e007eeda19955ab7c1e64094c65cf82ee5 /meta-webserver | |
parent | 6c7c69c700f367c131ddb942f44185b474feceac (diff) | |
download | meta-openembedded-8e6425cfa130a181b22077aa9153704c229ed4d7.tar.gz |
nginx: optimize systemd unit file
- Call the nginx binary directly, no need to wrap the SysV init file.
- Create /var/log/nginx with tmpfiles, like volatiles without systemd.
- Run nginx with ${NGINX_USER} (user ${NGINX_USER} in nginx.conf)
Signed-off-by: Gyorgy Szombathelyi <gyurco@freemail.hu>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r-- | meta-webserver/recipes-httpd/nginx/files/nginx.service | 9 | ||||
-rw-r--r-- | meta-webserver/recipes-httpd/nginx/nginx.inc | 5 |
2 files changed, 8 insertions, 6 deletions
diff --git a/meta-webserver/recipes-httpd/nginx/files/nginx.service b/meta-webserver/recipes-httpd/nginx/files/nginx.service index 9926a4b9d..ce9906171 100644 --- a/meta-webserver/recipes-httpd/nginx/files/nginx.service +++ b/meta-webserver/recipes-httpd/nginx/files/nginx.service | |||
@@ -3,10 +3,9 @@ Description=Nginx Server | |||
3 | After=network.target | 3 | After=network.target |
4 | [Service] | 4 | [Service] |
5 | Type=forking | 5 | Type=forking |
6 | PIDFile=@SYSCONFDIR@/nginx/run/nginx.pid | 6 | PIDFile=/run/nginx/nginx.pid |
7 | ExecStartPre=@BASEBINDIR@/mkdir -p @LOCALSTATEDIR@/log/nginx | 7 | ExecStart=@SBINDIR@/nginx |
8 | ExecStart=@SYSCONFDIR@/init.d/nginx start | 8 | ExecStop=@SBINDIR@/nginx -s stop |
9 | ExecStop=@SYSCONFDIR@/init.d/nginx stop | 9 | ExecReload=@SBINDIR@/nginx -s reload |
10 | [Install] | 10 | [Install] |
11 | WantedBy=multi-user.target | 11 | WantedBy=multi-user.target |
12 | |||
diff --git a/meta-webserver/recipes-httpd/nginx/nginx.inc b/meta-webserver/recipes-httpd/nginx/nginx.inc index fe51ca017..b0d2d9728 100644 --- a/meta-webserver/recipes-httpd/nginx/nginx.inc +++ b/meta-webserver/recipes-httpd/nginx/nginx.inc | |||
@@ -75,6 +75,8 @@ do_install () { | |||
75 | install -d ${D}${sysconfdir}/tmpfiles.d | 75 | install -d ${D}${sysconfdir}/tmpfiles.d |
76 | echo "d /run/${BPN} - - - -" \ | 76 | echo "d /run/${BPN} - - - -" \ |
77 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf | 77 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf |
78 | echo "d /${localstatedir}/log/${BPN} 0755 root root -" \ | ||
79 | >> ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf | ||
78 | fi | 80 | fi |
79 | install -d ${D}${sysconfdir}/${BPN} | 81 | install -d ${D}${sysconfdir}/${BPN} |
80 | ln -snf ${localstatedir}/run/${BPN} ${D}${sysconfdir}/${BPN}/run | 82 | ln -snf ${localstatedir}/run/${BPN} ${D}${sysconfdir}/${BPN}/run |
@@ -90,6 +92,7 @@ do_install () { | |||
90 | install -d ${D}${sysconfdir}/nginx | 92 | install -d ${D}${sysconfdir}/nginx |
91 | install -m 0644 ${WORKDIR}/nginx.conf ${D}${sysconfdir}/nginx/nginx.conf | 93 | install -m 0644 ${WORKDIR}/nginx.conf ${D}${sysconfdir}/nginx/nginx.conf |
92 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/nginx.conf | 94 | sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/nginx/nginx.conf |
95 | sed -i 's/^user.*/user ${NGINX_USER};/g' ${D}${sysconfdir}/nginx/nginx.conf | ||
93 | install -d ${D}${sysconfdir}/nginx/sites-enabled | 96 | install -d ${D}${sysconfdir}/nginx/sites-enabled |
94 | 97 | ||
95 | install -d ${D}${sysconfdir}/default/volatiles | 98 | install -d ${D}${sysconfdir}/default/volatiles |
@@ -101,7 +104,7 @@ do_install () { | |||
101 | install -m 0644 ${WORKDIR}/nginx.service ${D}${systemd_unitdir}/system/ | 104 | install -m 0644 ${WORKDIR}/nginx.service ${D}${systemd_unitdir}/system/ |
102 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 105 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
103 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ | 106 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ |
104 | -e 's,@BASEBINDIR@,${base_bindir},g' \ | 107 | -e 's,@SBINDIR@,${sbindir},g' \ |
105 | ${D}${systemd_unitdir}/system/nginx.service | 108 | ${D}${systemd_unitdir}/system/nginx.service |
106 | fi | 109 | fi |
107 | } | 110 | } |