nginx1.15.0-window 文件服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx1.15.0-window 文件服务器相关的知识,希望对你有一定的参考价值。

配置文件>>

worker_processes 1;

events {
worker_connections 1024;
}

http {
log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘
‘$status $body_bytes_sent "$http_referer" ‘
‘"$http_user_agent" "$http_x_forwarded_for"‘;

    access_log  logs/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    #文件服务器
    server {
    listen 80;
    server_name localhost;
    charset utf-8,gbk;
    root E:/tool;
    location / {
        autoindex on;
        autoindex_exact_size on;
        autoindex_localtime on;     
    }
    }

}

访问:http://127.0.0.1
技术分享图片

以上是关于nginx1.15.0-window 文件服务器的主要内容,如果未能解决你的问题,请参考以下文章

Failed to load resource: the server responded with a status of 404 (Not Found) favicon.ico文件找不到(示例代

DELL 14代服务器H750阵列卡安装Centos6.9系统

深圳本地网店代运营公司

2022最新网易云音乐代挂源码[含教程]自动刷歌签到

Java网络商城项目 SpringBoot+SpringCloud+Vue 网络商城(SSM前后端分离项目)八(文件的上传FastDFS和校验)(Nginx的请求前缀配置,在发布项目的时候要注意)(代

ECSHOP的JS文件代入问题