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

}

 

相关文章:

  • 2022-01-11
  • 2021-07-13
  • 2021-10-26
  • 2021-10-26
  • 2022-12-23
  • 2021-11-30
  • 2021-12-10
猜你喜欢
  • 2021-08-19
  • 2021-09-09
  • 2022-01-22
  • 2021-11-09
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
相关资源
相似解决方案