July 2016
Beginner
320 pages
6h 32m
English
The http module is NGINX's central module; it handles all interactions with clients over HTTP. We already discussed the following aspects of this module in Chapter 2, A Configuration Guide:
listen directiveserver_name and location directiveWe will have a look at the remaining directives in the rest of this section, again divided by type.
The server directive starts a new context. We have already seen examples of its usage throughout the book so far. One aspect that has not yet been examined in-depth is the concept of a
default server.
A default server in NGINX means that it is the first server defined in a particular ...