zoukankan      html  css  js  c++  java
  • nginx安装及配置访问本地文件

    第一步安装nginx

           windows可以直接去官网下载,解压就能用

           http://nginx.org/en/download.html

           ubuntu用命令行

           sudo apt-get install nginx

    第二部配置

          在nginx.conf文件中配置

    worker_processes  1;
    
    #error_log  logs/error.log;
    
    events {
        worker_connections  1024;
    }
    
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        sendfile        on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
        server {
            listen       8900;
            server_name  localhost;
            location / {
                root /usr/local/mpmInfo/sop/;
                index index.html index.htm;
            }
    
           
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    
        
        }
    
     
      
    }

    这种配置可以让你在访问localhost:8900时能够直接的访问到 /usr/local/mpmInfo/sop/这个文件夹下面的index.html

  • 相关阅读:
    堆排序回顾
    动画函数封装
    mouseenter 和mouseover的区别
    元素滚动 scroll 系列
    元素可视区 client 系列
    元素偏移量 offset 系列
    JS执行机制
    BOM
    常用键盘事件
    常用鼠标事件
  • 原文地址:https://www.cnblogs.com/saozhou/p/11345490.html
Copyright © 2011-2022 走看看