Nginx搭建文件服务器

下载Nginx,我这里下载1.26版本 http://nginx.org/download/nginx-1.26.1.zip

下载完成后解压出来,进入conf文件夹,找到nginx.conf配置文件,定位到server栏修改如下后保存

    server {
    charset utf-8;        #设置支持中文
        listen       80;        #监听端口
        server_name  localhost;
    autoindex on;        #开启索引功能
    autoindex_exact_size off;        #关闭计算文件确切大小(单位bytes),只显示大概大小(单位kb、mb、gb)
    autoindex_localtime on;        ## 显示本机时间而非 GMT 时间
        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   d:;        #设置文件根路径
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

 

返回上一层目录,找到nginx.exe,双击运行,浏览器访问ip即可

 

posted @ 2024-07-30 17:20  凡是過往;皆為序章  阅读(159)  评论(0编辑  收藏  举报