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;
}
}
} 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
第一步安装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