nginx 的ssi 功能让我们可以将不同的拼接起来,ngx_pagespeed 是pagespeed 的nginx 模块,可以帮助 我们解决前端的一些性能优化的问题,通过简单的配置就可以搞定 一张参考图 说明: demo 只简单使用了nginx ssi + ngx_pagespeed,ngx_srcache 暂时还没用 环境准备 docker-compose file   version: "3" services:  main:    build: ./    ports:    …
nodejs 类库 从当前来说nodejs 的npm 偏多,因为毕竟面向的是web 编程 tailor 一个layout 服务(基于fragment 的开发方式)https://github.com/zalando/tailor compoxure 一个microservice 组合的proxy,具有esi/ssi 的方便特性,同时内置了丰富的cache 以及layout 服务,很不错 https://github.com/tes/compoxure h-include 是一种scs 架构开发模…
最近工作需要使用nginx的ssi (server side include)技术,在这里,将使用中的一点心得分享一下,也是一种备忘! 首先,nginx的ssi启用很简单,就只有三个最基本的指令: ssi on: 默认是关闭的 ssi_silent_errors on; 默认是关闭的 ssi_types text/shtml;  默认是text/html 这三行的配置可以放在nginx的三个作用域下面(http, server, location).nginx的基本概念可以自己去网上学习. 这里…
SSI, for Server Side Includes, is actually a sort of server-side programming language interpreted by Nginx. Its name is based on the fact that the most used functionality of the language is the include command. Back in the 1990s, such languages were…
Nginx+Python+uwsgi+Django的web开发环境安装及配置 nginx安装 nginx的安装这里就略过了... python安装 通常系统已经自带了,这里也略过 uwsgi安装 官网 http://uwsgi-docs.readthedocs.io/en/latest/ 安装步骤如下: yum -y install python-devel wget -c https://projects.unbit.it/downloads/uwsgi-2.0.14.tar.gz tar z…
Micro Frontends - extending the microservice idea to frontend development https://micro-frontends.org/…
Micro Frontends https://martinfowler.com/articles/micro-frontends.html Integration approaches Server-side template composition Build-time integration Run-time integration via iframes Run-time integration via JavaScript Run-time integration via Web Co…
Micro Frontends & microservices https://micro-frontends.org/ https://github.com/neuland/micro-frontends Monolithic Frontends Organisation in Verticals Microservices micro services https://en.wikipedia.org/wiki/Microservices https://microservices.io/…
在nginx下与SSI配置相关的参数主要有ssi  ssi_sclient_error ssi_types三个.具体的用法如下 ssi on 开启ssi支持,默认是off ssi_silent_errors on 默认值是off,开启后在处理SSI文件出错时不输出错误提示:"[an error occurred while processing the directive] " ssi_types 默认是ssi_types text/html,所以如果需要htm和html支持,则不需要…
SSI,Server Side Include,支持html静态文件内以 <!--#include file="/layout/header.html"-->  的方式引入其他html静态文件,这一功能特性有助于页面设计的碎片化和效率效果提升(设计页面主要关心content内容的设计,而且碎片不会在多个页面存在N个copy,而是一次性都可以修改更新),demo内容见附件qingbo_design_demo.   demo目录文件结构: 设计页面目录在svn的同步管理下,可以…