server {
listen 80;
server_name localhost;
location ~ .*\.(html|htm|gif|jpg|pdf|jpeg|bmp|png|ico|txt|js|css)$ {
default_type text/html;
return 200 "~";
}
location ^~ /static {
default_type text/html;
return 200 "^~";
}
location / {
root /Users/xiejiahe/Documents/nginx/nginx/9000/;
error_page 404 @err;
}
location = /static {
default_type text/html;
return 200 "=";
}
location ~* ^/static$ {
default_type text/html;
return 200 "~*";
}
location @err {
default_type text/html;
return 200 "err";
}
}