February 2018
Beginner to intermediate
348 pages
9h 40m
English
This first section will summarize some of the common Apache configuration directives and attempt to provide equivalent or replacement solutions from Nginx. The list follows the order of the default Apache configuration file:
|
Apache directive |
Nginx equivalent |
|
ServerTokens: Apache allows you to configure the information transmitted in request headers regarding the server OS and software name and versions. |
server_tokens: In Nginx, you may enable or disable transmission of server information by using the server_tokens directive from the main HTTP module. |
|
ServerRoot: Lets you define the root folder of the server, which will contain the configuration and logs folder. |
--prefix build-time option: With Nginx, this option ... |