File: nginx.conf

package info (click to toggle)
nginx 1.26.3-3%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 9,360 kB
  • sloc: ansic: 165,437; sh: 613; perl: 439; python: 240; makefile: 126; cpp: 19
file content (34 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
##
#  File:
#    nginx.conf
#  Description:
#    Provides a very basic description of the use of nginx.conf.
##

# For more options with more detailed descriptions:
# See http://wiki.nginx.org/CoreModule

# Sets user/group of worker processes. If group is not specified, group is assumed
# to be the same as user. Syntax: user user [group]
user www-data;

# nginx has the ability to use more than one worker process
worker_processes 4;

# The pid-file. It can be used for the kill-command to send signals to nginx.
# Example: To reload the config: kill -HUP `cat /var/log/nginx.pid`
pid /var/run/nginx.pid;

# See http://wiki.nginx.org/HttpEventsModule
events {
    worker_connections 1024;
    # multi_accept on;
}

# See /usr/share/doc/nginx/examples/http
http {
}

# See /usr/share/doc/nginx/examples/mail
mail {
}