Which option within a Nginx server configuration section defines the file system path from which the content of the server is retrieved?
Which option within a Nginx server configuration section defines the file system path from which the content of the server is retrieved?
In a Nginx server configuration, the 'root' directive is used to define the file system path from which the content of the server is retrieved. This is distinct from Apache's 'DocumentRoot'. The 'location' directive is used to define how Nginx processes specific sets of requests, 'htdocs' and 'base_dir' are not valid Nginx directives.
D is correct