Complete the code to include a configuration file named extra.conf.
include [1];The include directive requires the file path without extra semicolons or quotes.
Complete the code to include all configuration files ending with .conf from the sites-enabled directory.
include /etc/nginx/sites-enabled/[1];The wildcard *.conf includes all files ending with .conf in the directory.
Fix the error in the include directive to properly include custom.conf.
include [1];The include directive must have the file path without quotes or trailing semicolon inside the path. The semicolon ends the directive.
Fill both blanks to include all .conf files from conf.d directory inside /etc/nginx/.
include [1]/[2];
The first blank is the directory path, and the second blank is the wildcard pattern for files ending with .conf.
Fill all three blanks to include default.conf from sites-available directory inside /etc/nginx/.
include [1]/[2]/[3];
The include path is built step-by-step: root /etc/nginx, then sites-available directory, then the file default.conf.