Horje
NGINX systemd service file Code Example
NGINX systemd service file
[Unit]
Description=The NGINX HTTP and reverse proxy server
After=syslog.target network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target

[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/usr/sbin/nginx -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target




Shell

Related
post webhook bash Code Example post webhook bash Code Example
how to use /dev/urandom Code Example how to use /dev/urandom Code Example
debian 9.4 telnet install Code Example debian 9.4 telnet install Code Example
macos netcat start listening Code Example macos netcat start listening Code Example
ubuntu 20.04 amdgpu-dkms error Code Example ubuntu 20.04 amdgpu-dkms error Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10