给大家讲一个快速配置nginx访问图片地址,以及访问html静态页面的配置。
1.实验环境
首先随便某个路径下创建相应的目录。如图下
2.在里面放自定义的html或者图片。
3.nginx配置
userroot;
worker_processes1;
#error_loglogs/error.log;
#error_loglogs/error.lognotice;
#error_loglogs/error.loginfo;
#pidlogs/nginx.pid;
events{
worker_connections1024;
}
http{
includemime.types;
default_typeapplication/octet-stream;
log_formatmain'$remote_addr-$remote_user[$time_local]"$request"'
'$status$body_bytes_sent"$http_referer"'
'"$http_user_agent""$http_x_forwarded_for"';
access_loglogs/access.logmain;
sendfileon;
#tcp_nopushon;
#keepalive_timeout0;
keepalive_timeout65;
#gzipon;
server{
listen80;#端口号
server_namelocalhost;#本机
charsetutf-8;
#access_loglogs/host.access.logmain;
location~.*\.(gif|jpg|jpeg|png)${
expires24h;
root/home/images/;#指定图片存放路径
access_log/usr/local/websrv/nginx-1.9.4/logs/images.log;#日志存放路径
proxy_storeon;
proxy_store_accessuser:rwgroup:rwall:rw;
proxy_temp_path/home/images/;#图片访问路径
proxy_redirectoff;
proxy_set_headerHost127.0.0.1;
client_max_body_size10m;
client_body_buffer_size1280k;
proxy_connect_timeout900;
proxy_send_timeout900;
proxy_read_timeout900;
proxy_buffer_size40k;
proxy_buffers40320k;
proxy_busy_buffers_size640k;
proxy_temp_file_write_size640k;
if(!-e$request_filename)
{
proxy_passhttp://127.0.0.1;#默认80端口
}
}
location/{
root/home/html;#html访问路径
indexindex.htmlindex2.htm;#html文件名称
}
error_page404/404.html;</span>
4.查看编译是否有出错,如果没出错则设置成功。
5.访问nginx则能访问到访问的图片地址。
6.访问自定义html时。


本文转载自中文网


本文转载自中文网
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html5/h54985.shtml