-
nginx
nginx
nginx ("
engine x") is an HTTP web server, reverse proxy,
content cache, load balancer,
TCP/UDP proxy server,
and mail proxy server.
Originally written by Igor Sysoev
and distributed under the
...
-
Module ngx_http_proxy_module
Module ngx_http_proxy_module
Example Configuration
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
Direc...
-
Configuring HTTPS servers
Configuring HTTPS servers
To configure an HTTPS server, the
ssl parameter
must be enabled on
listening sockets
in the server block,
and the locations of the
server certificate
and
private key
files ...
-
Module ngx_stream_core_module
Module ngx_stream_core_module
The
ngx_stream_core_module module
is available since version 1.9.0.
This module is not built by default, it should be enabled with the
--with-stream
configuration para...
-
Server names
Server names
Server names are defined using the
server_name
directive
and determine which server block
is used for a given request.
See also “How nginx processes a request”.
They may be defined using...
-
nginx documentation
englishрусскийnewsaboutdownloadsecuritydocumentationfaqbookssupporttractwitterblogunitnjs[1][2][3][4][5][6][7][8][9][10][11][12][13]nginx documentationIntroduction
Installing nginx[14]
Building ...