首先 如果安装apache 应该卸载
sudo apt-get --purge remove apache2 sudo apt-get --purge remove apache2.2-common sudo apt-get autoremove删除掉的配置文件,
sudo find /etc -name "*apache*" -exec rm -rf {} \; sudo rm -rf /var/www
安装 Nginx
sudo apt-get update sudo apt-get install Nginx
如果安装的Nginx 没有配置文件,且/etc/Nginx 没有则执行
sudo apt-get --purge remove Nginx sudo apt-get autoremove dpkg --get-selections|grep Nginx
sudo apt-get --purge remove Nginx-common sudo apt-get --purge remove Nginx-core从新安装Nginx
sudo apt-get install Nginx
目录浏览功能在server 下
查看Nginx.conf
cat /etc/Nginx/Nginx.conf
vim /etc/Nginx/Nginx.conf
如果 Nginx.conf 里 没有 server
则 在 http 下
server{ listen 80; server_name localhost; root /var/www/; index index.html; location /download{ root /var/www/; # 指定目录路径 autoindex on; #开启目录浏览 autoindex_exact_size off; #以可读方式显示文件大小 单位kb,mb,gb } }
然后 保存 重启 Nginx
/etc/init.d/Nginx restart
如果 重启 失败 fail 提示
则执行
sudo Nginx -t
重启成功后
在 浏览器输入 你的 地址
然后成功