Nginx浏览本地目录设置
时间:2015-12-01 18:56 来源:linux.it.net.cn 作者:IT
老是记不住,干脆放在这里记录下来。
-
server {
-
listen 81;
-
server_name localhost;
-
-
location = /favicon.ico {
-
log_not_found off;
-
log_subrequest off;
-
}
-
-
-
location ^~ /log {
-
alias /home/dist;
-
autoindex on;
-
autoindex_exact_size off;
-
autoindex_localtime on;
-
}
-
}
server {
listen 81;
server_name localhost;
location = /favicon.ico {
log_not_found off;
log_subrequest off;
}
location ^~ /log {
alias /home/dist;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}
参考:
http://nginxlibrary.com/enable-directory-listing/
(责任编辑:IT)
老是记不住,干脆放在这里记录下来。
server { listen 81; server_name localhost; location = /favicon.ico { log_not_found off; log_subrequest off; } location ^~ /log { alias /home/dist; autoindex on; autoindex_exact_size off; autoindex_localtime on; } } 参考: http://nginxlibrary.com/enable-directory-listing/ (责任编辑:IT) |