进入安装nginx目录,编辑配置文件nginx.conf
默认访问的html页面就在这里
所以要修改localhost所访问的目录,可以将root后面的目录进行修改。
比如在桌面建立html文件夹,在html文件夹下面新建test.html文件,内容是hello world
然后去修改nginx.conf配置文件
修改成下面这样:
关闭nginx
sudo service nginx stop #停止,nginx要使用绝对路径
重新加载配置
sudo service nginx reload #重新加载配置,nginx要使用绝对路径
启动nginx
sudo /usr/local/nginx/sbin/nginx