一、安装nginx
yum install nginx
二、编辑/etc/nginx/nginx.conf
user nginx 修改为 user root
三、编辑/etc/nginx/conf.d/default.conf
server {
listen 80;
server_name 192.168.1.198; # 自己PC的ip或者服务器的域名
charset utf-8; # 避免中文乱码
root /home/images;
location / {
autoindex on; # 索引
autoindex_exact_size on; # 显示文件大小
autoindex_localtime on; # 显示文件时间
}
}
四、启动服务
关闭 nginx -s stop
重启 nginx -c nginx.conf
五、检测
浏览器访问 http://192.168.1.198/ 看下是否有文件列表显示