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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM