博主首页

nginx配置访问静态文件

worker_processes  1;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;



    sendfile        on;


    keepalive_timeout  65;

    server {
        listen       80;#端口
        server_name  localhost;#访问地址、域名
               
        
        location /myhtml/ {     #匹配访问url规则
            root  D:\\t2\\html;       #指向路径   实际访问路径为 D:/t2/html/myhtml/  两个拼接的
        }
    }

}

 

posted @ 2020-09-29 16:04  笑~笑  阅读(897)  评论(0编辑  收藏  举报