by 刘迎光@萤火虫工作室
OpenBI交流群:495266201
MicroService 微服务交流群:217722918
mail: liuyg#liuyingguang.cn
博主首页(防止爬虫):http://blog.liuyingguang.cn
OpenBI问答社区:http://openbi.liuyingguang.cn/
by 刘迎光@萤火虫工作室
OpenBI交流群:495266201
MicroService 微服务交流群:217722918
mail: liuyg#liuyingguang.cn
博主首页(==防止爬虫==):http://blog.liuyingguang.cn
FROM anapsix/alpine-java:jre8 MAINTAINER firewarm LightingLiu <liuyg@liuyingguang.cn> ENV ES_PKG_NAME elasticsearch-2.3.3 ADD $ES_PKG_NAME.tar.gz /usr/share/ ADD elasticsearch/ /usr/share/$ES_PKG_NAME/ RUN cd /usr/share/ && \ mv $ES_PKG_NAME elasticsearch && \ chmod +x /usr/share/elasticsearch/bin/* ENV PATH /usr/share/elasticsearch/bin:$PATH # Define default command. CMD ["elasticsearch"] EXPOSE 9200 EXPOSE 9300
docker build -t firewarm/elasticsearch:2.3.3.1 .
docker run -v /home/elasticsearch/config:/usr/share/elast
最近在做微服务相关产品,其中需要有API网关相关产品,虽然早有研究过API网关产品TYK,但是感觉其太重,想起之前研究开源BI产品saiku的时候,记得其有NodeJS的代理代码,于是看了下,颇有启发,略微修改了一些,拿出来跟大家分享下,虽然简单,不可用于生产,但是对于学习还是不错的
{
"name": "SmartHttpProxy",
"description": "An simplest Http Proxy",
"version": "0.0.1",
"author": "liuyg@liuyingguang.cn",
"license": {
"type": "Apache License Version 2"
},
"main": "server.js",
"scripts": {
"start": "node server.js 8088 127.0.0.1 80 / "
},
"dependencies": {
"express": "~4.13.4"
}
}
/*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either e