900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > nginx配置访问图片路径以及html静态页面的调取方法

nginx配置访问图片路径以及html静态页面的调取方法

时间:2021-03-24 01:53:42

相关推荐

nginx配置访问图片路径以及html静态页面的调取方法

web前端|html教程

nginx访问静态资源,nginx,访问静态页面,nginx,访问静态html

web前端-html教程

这篇文章主要介绍了详解nginx配置访问图片路径以及html静态页面的调取方法,现在分享给大家,也给大家做个参考。

vip电影源码,ubuntu开机输入密码,tomcat 9 怎么样,python 爬虫切片,idc开源php管理系统,绍兴seo瓢行者seo07lzw

给大家讲一个快速配置nginx访问图片地址,以及访问html静态页面的配置。

尖站源码交易平台,vscode扩展包python,ubuntu重新,tomcat虚拟内存,sqlite 持久化,网页设计 详细页设计,sql2000 数据库 改名,ubuntu服务器版本,jquery div拖动修改页面插件,适合bi报表的前端框架,python做网络爬虫,php 留言板,专业seo服务公司,springboot 每隔,html5网站链接标签,商城网站建设模板,如何下载https网页源码,天猫导航模板,magento 后台添加属性,织梦内容页面调用tag,樱桃企业网站管理系统 2.1,c语言经典程序源代码下载lzw

1.实验环境

穷游网源码,vscode混合编程,ubuntu壁纸照片,tomcat瞬时高并发,爬虫简图,php程序介绍,品牌seo系统加盟代理,网站客服html代码,网站模板lzw

首先随便某个路径下创建相应的目录。如图下

2.在里面放自定义的html或者图片。

3.nginx配置

user root; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid;events { worker_connections 1024; }http { include mime.types; default_type application/octet-stream;log_format main $remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" \"$http_user_agent" "$http_x_forwarded_for";access_log logs/access.log main;sendfile on; #tcp_nopush on;#keepalive_timeout 0; keepalive_timeout 65;#gzip on; server {listen 80;#端口号server_name localhost;#本机 charset utf-8; #access_log logs/host.access.log main;location ~ .*\.(gif|jpg|jpeg|png)$ {expires 24h; root /home/images/;#指定图片存放路径 access_log /usr/local/websrv/nginx-1.9.4/logs/images.log;#日志存放路径 proxy_store on; proxy_store_access user:rw group:rw all:rw; proxy_temp_path/home/images/;#图片访问路径 proxy_redirectoff; proxy_set_header Host 127.0.0.1; client_max_body_size 10m; client_body_buffer_size 1280k; proxy_connect_timeout 900; proxy_send_timeout 900; proxy_read_timeout 900; proxy_buffer_size 40k; proxy_buffers40 320k; proxy_busy_buffers_size 640k; proxy_temp_file_write_size 640k; if ( !-e $request_filename) { proxy_pass http://127.0.0.1;#默认80端口 } } location / { root /home/html; #html访问路径 index index.html index2.htm; #html文件名称} error_page 404 /404.html;

4.查看编译是否有出错,如果没出错则设置成功。

5.访问nginx则能访问到访问的图片地址。

6.访问自定义html时。

成功。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。