|
NAMEnginx —
HTTP and reverse proxy server, mail proxy server
SYNOPSIS
DESCRIPTIONnginx (pronounced “engine x”) is an HTTP
and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy
server. It is known for its high performance, stability, rich feature set,
simple configuration, and low resource consumption.
The options are as follows:
SIGNALSThe master process ofnginx can handle the following
signals:
While there is no need to explicitly control worker processes normally, they support some signals too: DEBUGGING LOGTo enable a debugging log, reconfigurenginx to build
with debugging:
./configure --with-debug
... and then set the error_log /path/to/log
debug; It is also possible to enable the debugging for a particular IP address: events { debug_connection 127.0.0.1; } ENVIRONMENTTheNGINX environment variable is used internally by
nginx and should not be set directly by the user.
FILES
EXIT STATUSExit status is 0 on success, or 1 if the command fails.EXAMPLESTest configuration file ~/mynginx.conf with global directives for PID and quantity of worker processes:nginx -t -c ~/mynginx.conf \ -g "pid /var/run/mynginx.pid; worker_processes 2;" SEE ALSODocumentation at http://nginx.org/en/docs/.For questions and technical support, please refer to http://nginx.org/en/support.html. HISTORYDevelopment ofnginx started in 2002, with the first
public release on October 4, 2004.
AUTHORSIgor Sysoev <igor@sysoev.ru>.This manual page was originally written by Sergey
A. Osokin
<osa@FreeBSD.org.ru>
as a result of compiling many
Visit the GSP FreeBSD Man Page Interface. |