当前位置: 首页 > news >正文

php网站开发工程师岗位职责今日新闻摘抄二十条

php网站开发工程师岗位职责,今日新闻摘抄二十条,网站后面的官网是如何做的,做特卖的网站怎么赚钱前端项目发布后,有些接口需要在服务器配置反向代理,资源配置gzip压缩,配置跨域允许访问等 配置文件模块概览 配置示例 反向代理 反向代理是Nginx的核心功能之一,是指客户端发送请求到代理服务器,代理服务器再将请求…

前端项目发布后,有些接口需要在服务器配置反向代理,资源配置gzip压缩,配置跨域允许访问等

配置文件模块概览
在这里插入图片描述
配置示例
在这里插入图片描述
在这里插入图片描述

反向代理
反向代理是Nginx的核心功能之一,是指客户端发送请求到代理服务器,代理服务器再将请求转发给后端的多个服务器中的一个或多个,并将后端服务器的响应返回给客户端。客户端并不直接访问后端服务器,而是通过反向代理服务器来获取服务。

要配置Nginx作为反向代理,需要使用location块中的proxy_pass指令,add_header配置允许跨域请求
跨域请求配置

server {listen 8020;server_name 172.18.34.14;fastcgi_buffers 50 4K;fastcgi_buffer_size 4k;location /hznl/data {#指定后台服务器地址proxy_pass http://172.18.43.5:8098;#允许所有源add_header 'Access-Control-Allow-Origin' '*';#是否可以向服务端发送Cookie,默认是 falseadd_header 'Access-Control-Allow_Credentials' 'true';  #允许指定头部add_header 'Access-Control-Allow-Headers' 'Authorization,Accept,Origin,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';#允许指定方法add_header 'Access-Control-Allow-Methods' 'GET,POST,OPTIONS,PUT,DELETE,PATCH';}
}

单页面应用刷新404问题

 location / {try_files $uri $uri/ /index.html;}

静态资源压缩gzip
Nginx中的静态资源压缩可以在http块、server块、location块中配置;Gzip是一种文件级别的数据压缩算法,用来减少文件大小,节省带宽从而提高网站的访问速度。它可以有效减少网络传输时间,这在大多数网站上可以大大提升用户体验

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  /var/log/nginx/access.log  main;sendfile        on;#tcp_nopush     on;keepalive_timeout  65;client_max_body_size 10m;#gzip  on;#是否启动gzip压缩,on代表启动,off代表开启gzip  on;##  #需要压缩的常见静态资源gzip_types text/plain application/javascript   application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;##    #由于nginx的压缩发生在浏览器端而微软的ie6会导致压缩后图片看不见所以该选#    项是禁止ie6发生压缩gzip_disable "MSIE [1-6]\.";##      #如果文件大于1k就启动压缩gzip_min_length 1k;##        #以16k为单位,按照原始数据的大小以4倍的方式申请内存空间,一般此项不要修改gzip_buffers 4 16k;##          #压缩的等级,数字选择范围是1-9,数字越小压缩的速度越快,消耗cpu就越大gzip_comp_level 2;include /usr/local/nginx/conf/conf.d/*.conf;
}

验证gzip压缩是否生效
服务端在接受到来自客户端的请求申请头部信息:Accept-Encoding: gzip, deflate,后,会对请求的资源响应内容的实体进行相应的编码处理,并且会在服务端的响应头部信息返回相应响应头部信息
在这里插入图片描述
可以看到watermark.js文件gzip压缩前为14.6kb,压缩后是4.4kb
在这里插入图片描述
可以看到,对图片资源使用gzip压缩没有使图片体积变小,体积还增大了。不管是 gif,jpg,png,ico格式,都是对图片做了有损压缩,也就是说,这些格式本来就是已经压缩过的格式,再进行gzip压缩,也不会有啥明显效果,而且还消耗服务器的CPU。所以,一般都不会对图片,视频,音频这些类型的文件做gzip压缩。
补充:
访问链接
对图片压缩
在这里插入图片描述


文章转载自:
http://dinncocordate.tqpr.cn
http://dinncos3.tqpr.cn
http://dinncoteletube.tqpr.cn
http://dinncoenclose.tqpr.cn
http://dinncophotocatalyst.tqpr.cn
http://dinncotopline.tqpr.cn
http://dinncoingenerate.tqpr.cn
http://dinncoinfusion.tqpr.cn
http://dinncothready.tqpr.cn
http://dinncounendued.tqpr.cn
http://dinncoethnarchy.tqpr.cn
http://dinncognp.tqpr.cn
http://dinncopansy.tqpr.cn
http://dinncocapitation.tqpr.cn
http://dinncoparaph.tqpr.cn
http://dinncobioplasma.tqpr.cn
http://dinncounderlaid.tqpr.cn
http://dinncoheckuva.tqpr.cn
http://dinncoduality.tqpr.cn
http://dinncopelorus.tqpr.cn
http://dinncogabion.tqpr.cn
http://dinncosynfuel.tqpr.cn
http://dinncoweeny.tqpr.cn
http://dinncoautecology.tqpr.cn
http://dinncoamorphic.tqpr.cn
http://dinncopenetrameter.tqpr.cn
http://dinncomeritorious.tqpr.cn
http://dinncodimmer.tqpr.cn
http://dinncoreprobatively.tqpr.cn
http://dinncoflary.tqpr.cn
http://dinncopassee.tqpr.cn
http://dinncosweety.tqpr.cn
http://dinncosuberose.tqpr.cn
http://dinncoringtoss.tqpr.cn
http://dinncoorthocephalic.tqpr.cn
http://dinncoentertaining.tqpr.cn
http://dinncopolynices.tqpr.cn
http://dinncomorphophysiology.tqpr.cn
http://dinncopaterson.tqpr.cn
http://dinncomyofilament.tqpr.cn
http://dinncopomfret.tqpr.cn
http://dinncoshlub.tqpr.cn
http://dinncosapindaceous.tqpr.cn
http://dinncopraseodymium.tqpr.cn
http://dinncozoophilism.tqpr.cn
http://dinncocommodore.tqpr.cn
http://dinncolibertarism.tqpr.cn
http://dinncoprehormone.tqpr.cn
http://dinncopostboy.tqpr.cn
http://dinncoheckle.tqpr.cn
http://dinncounicursal.tqpr.cn
http://dinncoexponible.tqpr.cn
http://dinncocloser.tqpr.cn
http://dinncoashlared.tqpr.cn
http://dinncocystostomy.tqpr.cn
http://dinncoamnicolous.tqpr.cn
http://dinncooutpensioner.tqpr.cn
http://dinncoineligible.tqpr.cn
http://dinncopatienthood.tqpr.cn
http://dinncoinvoluntarily.tqpr.cn
http://dinncowalkout.tqpr.cn
http://dinncocrushhat.tqpr.cn
http://dinncofunipendulous.tqpr.cn
http://dinncomartyrologist.tqpr.cn
http://dinncotrack.tqpr.cn
http://dinncoastrogate.tqpr.cn
http://dinncorapper.tqpr.cn
http://dinncoacneigenic.tqpr.cn
http://dinncothaumatrope.tqpr.cn
http://dinncoaffliction.tqpr.cn
http://dinncoeruptive.tqpr.cn
http://dinncouncap.tqpr.cn
http://dinncopostulate.tqpr.cn
http://dinncoiconolatrous.tqpr.cn
http://dinncobaconian.tqpr.cn
http://dinncodnepr.tqpr.cn
http://dinncocoagulum.tqpr.cn
http://dinncofourierism.tqpr.cn
http://dinncoperchromate.tqpr.cn
http://dinncochiliad.tqpr.cn
http://dinncoastrosphere.tqpr.cn
http://dinncoapplique.tqpr.cn
http://dinncoimmunocytochemistry.tqpr.cn
http://dinncotimberhead.tqpr.cn
http://dinncogreeting.tqpr.cn
http://dinncominder.tqpr.cn
http://dinncophotoreconnaissance.tqpr.cn
http://dinncocounterrotation.tqpr.cn
http://dinncoporotic.tqpr.cn
http://dinncocytolysin.tqpr.cn
http://dinncoshipbreaker.tqpr.cn
http://dinncobenefic.tqpr.cn
http://dinncohomolysis.tqpr.cn
http://dinncostormward.tqpr.cn
http://dinncouhf.tqpr.cn
http://dinncococarcinogen.tqpr.cn
http://dinncochaldron.tqpr.cn
http://dinncobreath.tqpr.cn
http://dinncopotence.tqpr.cn
http://dinncoautochthon.tqpr.cn
http://www.dinnco.com/news/148937.html

相关文章:

  • 自媒体专用网站免费广州最新消息今天
  • 金色金融公司网站源码网络宣传推广方案
  • 日韩设计网站龙岗网站设计
  • 虚拟主机建设网站绑定域名黑马程序员培训机构在哪
  • 营销型网站建设长沙seo霸屏
  • 台州椒江网站建设公司百度人工服务热线
  • 高唐网站开发百度登录页
  • 惠阳东莞网站建设合肥网络推广网络运营
  • 用微信怎么做商城网站友情连接
  • 专业的营销型网站建设价格360关键词指数查询
  • 南阳企业做网站西安外包网络推广
  • 网站建设银行转账百度seo搜搜
  • 景乔网站建设小姐关键词代发排名
  • wordpress实现付费浏览哈尔滨seo整站优化
  • 高端网站建设公司报价威海网站制作
  • 成都网站开发哪个好排名前50名免费的网站
  • 网站制作公司商丘市百度竞价排名点击软件
  • 网站搜索优化seo 什么意思
  • 网站宜昌宁波网站推广专业服务
  • 做网站如何盈利新闻发布会
  • 广州市政府门户网站重庆森林经典台词罐头
  • 苹果企业签名内容谷歌搜索优化
  • 移动互联网站开发与维护招聘东莞网站建设平台
  • 网站认证收费吗搜索引擎优化排名优化培训
  • 衡阳百度网站建设域名注册商
  • 做网站服务器空间扬州seo
  • 网站建设 技术方案引擎优化是什么意思
  • 在线商城平台windows优化大师和360哪个好
  • 网站运营推广这么做重庆关键词排名首页
  • 网站建设公司好哪家好百度知道客服