1.先安装好nginx,这里就不在做解释了,在我的上一篇文章中有详细写到
2.修改配置文件,配置文件默认在/usr/local/nginx/conf/nginx.conf中
user root; #索引的跟目录属于哪个用户就填哪个用户
server {
listen 80; #监听的端口
server_name 192.168.5.199:80; #主机的地址,不用改使用默认的localhost也行charset utf-8; #编码改为utf-8,避免中文乱码
#access_log logs/host.access.log main;
location / { #这个是路由路径的意思
root /home/dockerfile; #显示根索引的目录,这里需要是自己的目录
# index index.html index.php; #这个html需要注释掉,不然会显示html的界面
autoindex on; #开启索引功能
autoindex_exact_size off; #关闭计算文件确切小(byte字节),只显示大概
autoindex_localtime on; #显示本机时间而非GMT时间
3.修改配置文件之后需要重启配置文件
cd /usr/local/nginx/sbin/ #切换到sbin目录下
./nginx -s reload #重启配置文件
4.创建根目录(根目录下的内容就是nginx页面提供下载的内容)
mkdir -p /home/dockerfile
5.赋予权限
chmod -xxx /目录/目录 r(可读)=4,w(可写)=2,x(可执行)=1
6.然后就可以愉快的下载啦!