1、安装nginx
sudo apt-get install nginx
2、查看nginx是否安装成功、及配置文件位置
sudo nginx -t 显示结果: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
3、配置文件
1)从sites-enabled拷贝一份配置文件default至 /etc/nginx/conf.d/文件夹中,并将后缀名改为.conf
2)修改conf.d里面的配置文件
listen:端口号; server_name:localhost; location / { root 网站目录; index index.html,index.htm; }
3)重读配置文件
sudo nginx -s reload
然后可以打开浏览器访问,如果现在403错误,有两个可能、
一个是网站目录没有权限解决方法
chmod -R 755 网站目录
另一个是用户不对,编辑
/etc/nginx/nginx.conf文件,将最上面的user改为你现在启动的用户名。