淘先锋技术网

首页 1 2 3 4 5 6 7

在服务器中实际的配置可能位于 /etc/nginx/conf.d/ 目录下的其他文件中。

在列表中找到包含服务器配置的文件。这些文件通常以 .conf 为后缀,例如 example.conf

修改:

server {
    listen       80;
    server_name  example.com;
    root         /path/to/default/directory;
    ...
}