/etc/init/nginx.conf - Debian GNU/Linux 9 (stretch)

This is the default example configuration of nginx.conf provided by nginx. This config file was generated by nginx running on Debian 9.

It is located under: /etc/init/nginx.conf

    description "nginx - small, powerful, scalable web/proxy server"

start on filesystem and static-network-up
stop on runlevel [016]

expect fork
respawn

pre-start script
	[ -x /usr/sbin/nginx ] || { stop; exit 0; }
	/usr/sbin/nginx -q -t -g 'daemon on; master_process on;' || { stop; exit 0; }
end script

exec /usr/sbin/nginx -g 'daemon on; master_process on;'

pre-stop exec /usr/sbin/nginx -s quit

    
  

Config Details

Location
/etc/init/nginx.conf
Operating system
Debian GNU/Linux 9 (stretch)
Length
16 lines
MD5 checksum
a99b1826a609e329237fc675182cf5ed

Usage

Download the raw file with wget or curl

Wget

wget -O nginx.conf.example http://exampleconfig.com/static/raw/nginx/debian9/etc/init/nginx.conf

cURL

curl http://exampleconfig.com/static/raw/nginx/debian9/etc/init/nginx.conf > nginx.conf.example