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/  两个拼接的
        }
    }

}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章