summaryrefslogtreecommitdiff
path: root/config_files/nginx.service
diff options
context:
space:
mode:
Diffstat (limited to 'config_files/nginx.service')
-rw-r--r--config_files/nginx.service23
1 files changed, 23 insertions, 0 deletions
diff --git a/config_files/nginx.service b/config_files/nginx.service
new file mode 100644
index 0000000..7b5a697
--- /dev/null
+++ b/config_files/nginx.service
@@ -0,0 +1,23 @@
+[Unit]
+Description=The nginx HTTP and reverse proxy server
+After=network-online.target remote-fs.target nss-lookup.target
+Wants=network-online.target
+
+[Service]
+Type=forking
+PIDFile=/run/nginx.pid
+# Nginx will fail to start if /run/nginx.pid already exists but has the wrong
+# SELinux context. This might happen when running `nginx -t` from the cmdline.
+# https://bugzilla.redhat.com/show_bug.cgi?id=1268621
+ExecStartPre=/usr/bin/rm -f /run/nginx.pid
+ExecStartPre=/usr/sbin/nginx -t
+ExecStart=/usr/sbin/nginx
+ExecReload=/usr/sbin/nginx -s reload
+KillSignal=SIGQUIT
+TimeoutStopSec=5
+KillMode=mixed
+PrivateTmp=true
+Environment="OPENSSL_CONF=/etc/pki/tls/openssl.pkcs11.cnf"
+
+[Install]
+WantedBy=multi-user.target