15 lines
383 B
INI
15 lines
383 B
INI
|
[Unit]
|
||
|
Description=nginx web service
|
||
|
Documentation=http://nginx.org/en/docs/
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
|
||
|
ExecStart=/usr/local/nginx/sbin/nginx
|
||
|
ExecReload=/usr/local/nginx/sbin/nginx -s reload
|
||
|
ExecStop=/usr/local/nginx/sbin/nginx -s stop
|
||
|
PrivateTmp=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.targe
|