14 lines
392 B
Desktop File
14 lines
392 B
Desktop File
[Unit]
|
|
Description=The NGINX HTTP and reverse proxy server
|
|
After=network.target remote-fs.target nss-lookup.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
PIDFile=/usr/local/nginx/logs/nginx.pid
|
|
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
|
|
ExecReload=/usr/local/nginx/sbin/nginx -s reload
|
|
ExecStop=/bin/kill -s QUIT $MAINPID
|
|
PrivateTmp=false
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |