You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
361 B
16 lines
361 B
7 years ago
|
[Unit]
|
||
|
Description=The nginx HTTP and reverse proxy server
|
||
|
After=syslog.target network.target remote-fs.target nss-lookup.target
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
PIDFile=/run/nginx.pid
|
||
|
ExecStartPre=/usr/sbin/nginx -t
|
||
|
ExecStart=/usr/sbin/nginx
|
||
|
ExecReload=/bin/kill -s HUP $MAINPID
|
||
|
ExecStop=/bin/kill -s QUIT $MAINPID
|
||
|
PrivateTmp=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|