NGINX 和本地托管的自定义域名

NGINX 和本地托管的自定义域名

我正在使用以下配置在本地设置一个 nginx 网络服务器:

server { server_name im;

access_log /var/www/im/website.access_log;
error_log /var/www/im/website.error_log;

root /var/www/im;
index index.php index.htm index.html;

location ~ .php$ {
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME /var/www/im/$fastcgi_script_name;
include fastcgi_params;
    }

}

我想使用“im/”访问本地托管的网站,但结果却显示“未找到”。唯一有效的是“localhost”。这可能吗?我应该在配置中更正/添加什么?

答案1

该名称需要从系统中解析——您需要将该名称添加到您的/etc/hosts文件中。

相关内容