├── LICENSE ├── README.md ├── mysql └── 5.6 │ ├── Dockerfile │ ├── README │ └── applications │ ├── build-depends │ └── mysql-conf │ │ ├── my.cnf │ │ └── mysql_init.sh │ ├── deploy │ └── scripts │ │ ├── execute_sql.sh │ │ └── test.sql │ ├── run.sh │ └── supervisor.conf.d │ └── mysqld.conf ├── openresty └── 1.9.15.1 │ ├── Dockerfile │ ├── README │ └── applications │ ├── build-depends │ └── openresty │ │ ├── nginx_upstream_check_module-0.3.0.tar.gz │ │ ├── ngx_cache_purge-2.3.tar.gz │ │ └── openresty-1.9.15.1.tar.gz │ ├── nginx-conf.d │ ├── cert │ │ ├── 3927.crt │ │ ├── 3927.csr │ │ ├── 3927.key │ │ ├── 3927_nopass.key │ │ └── README │ ├── limit │ │ ├── limit_location.conf │ │ ├── limit_zone.conf │ │ ├── test.conf.bak │ │ └── whiteip.conf │ ├── nginx.conf │ ├── server.d │ │ ├── krosa.conf.bak │ │ ├── nuri.conf.bak │ │ ├── tembin.conf.bak │ │ └── test.conf │ └── upstream.d │ │ ├── channel_server.conf.bak │ │ ├── ips.conf.bak │ │ ├── jebi.conf.bak │ │ ├── lan.conf.bak │ │ ├── nf.conf.bak │ │ ├── poma.conf.bak │ │ ├── rcm_saas.conf.bak │ │ ├── secalert.conf.bak │ │ ├── ttp.conf.bak │ │ ├── upstream.conf.bak │ │ ├── websafe.conf.bak │ │ └── wvss.conf.bak │ ├── run.sh │ └── supervisor.conf.d │ └── nginx.conf.template ├── redis └── 2.8 │ ├── Dockerfile │ ├── README │ └── applications │ ├── build-depends │ └── redis-conf │ │ ├── redis.conf.template │ │ └── redis_init.sh │ ├── run.sh │ └── supervisor.conf.d │ └── redis.conf └── ubuntu └── 14.04 ├── Dockerfile ├── README └── applications ├── build-depends ├── apt-sources │ ├── sources.list.precise │ └── sources.list.trusty ├── nginx-conf │ ├── default.template │ ├── nginx.conf │ ├── server.crt │ └── server.key ├── ntp-conf │ └── ntp.conf ├── pip-conf │ └── pip.conf ├── pip-requirements │ └── requirements.txt ├── ssh-conf │ └── sys_automation.pub ├── svn-conf │ └── .subversion.tar.gz └── uwsgi-conf │ └── uwsgi.ini.template ├── build-utils ├── configueUpdate │ └── templateInvoke.py ├── hostsUpdate │ ├── mungehosts │ └── run.sh └── kernelUpdate │ ├── run.sh │ └── sysctl.conf ├── run.sh └── supervisor.conf.d ├── mysqld.conf.bak ├── nginx.conf.bak ├── ntpd.conf ├── sshd.conf └── uwsgi.conf.bak /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/README.md -------------------------------------------------------------------------------- /mysql/5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/Dockerfile -------------------------------------------------------------------------------- /mysql/5.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/README -------------------------------------------------------------------------------- /mysql/5.6/applications/build-depends/mysql-conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/applications/build-depends/mysql-conf/my.cnf -------------------------------------------------------------------------------- /mysql/5.6/applications/build-depends/mysql-conf/mysql_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/applications/build-depends/mysql-conf/mysql_init.sh -------------------------------------------------------------------------------- /mysql/5.6/applications/deploy/scripts/execute_sql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/applications/deploy/scripts/execute_sql.sh -------------------------------------------------------------------------------- /mysql/5.6/applications/deploy/scripts/test.sql: -------------------------------------------------------------------------------- 1 | SHOW DATABASES; 2 | -------------------------------------------------------------------------------- /mysql/5.6/applications/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/applications/run.sh -------------------------------------------------------------------------------- /mysql/5.6/applications/supervisor.conf.d/mysqld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/mysql/5.6/applications/supervisor.conf.d/mysqld.conf -------------------------------------------------------------------------------- /openresty/1.9.15.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/Dockerfile -------------------------------------------------------------------------------- /openresty/1.9.15.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/README -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/build-depends/openresty/nginx_upstream_check_module-0.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/build-depends/openresty/nginx_upstream_check_module-0.3.0.tar.gz -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/build-depends/openresty/ngx_cache_purge-2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/build-depends/openresty/ngx_cache_purge-2.3.tar.gz -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/build-depends/openresty/openresty-1.9.15.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/build-depends/openresty/openresty-1.9.15.1.tar.gz -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.crt -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.csr -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/cert/3927.key -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/cert/3927_nopass.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/cert/3927_nopass.key -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/cert/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/cert/README -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/limit/limit_location.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/limit/limit_zone.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/limit/test.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/limit/test.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/limit/whiteip.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/nginx.conf -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/server.d/krosa.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/server.d/krosa.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/server.d/nuri.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/server.d/nuri.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/server.d/tembin.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/server.d/tembin.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/server.d/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/server.d/test.conf -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/channel_server.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/channel_server.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/ips.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/ips.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/jebi.conf.bak: -------------------------------------------------------------------------------- 1 | upstream jebi_api { 2 | server 10.6.24.83; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/lan.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/lan.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/nf.conf.bak: -------------------------------------------------------------------------------- 1 | upstream nf_api { 2 | server 10.6.0.147; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/poma.conf.bak: -------------------------------------------------------------------------------- 1 | upstream poma_api { 2 | server 10.6.24.86; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/rcm_saas.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/rcm_saas.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/secalert.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/secalert.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/ttp.conf.bak: -------------------------------------------------------------------------------- 1 | upstream ttp_api { 2 | server 10.6.0.181; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/upstream.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/upstream.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/websafe.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/websafe.conf.bak -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/nginx-conf.d/upstream.d/wvss.conf.bak: -------------------------------------------------------------------------------- 1 | upstream wvss_api { 2 | server 10.6.0.42; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/run.sh -------------------------------------------------------------------------------- /openresty/1.9.15.1/applications/supervisor.conf.d/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/openresty/1.9.15.1/applications/supervisor.conf.d/nginx.conf.template -------------------------------------------------------------------------------- /redis/2.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/Dockerfile -------------------------------------------------------------------------------- /redis/2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/README -------------------------------------------------------------------------------- /redis/2.8/applications/build-depends/redis-conf/redis.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/applications/build-depends/redis-conf/redis.conf.template -------------------------------------------------------------------------------- /redis/2.8/applications/build-depends/redis-conf/redis_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/applications/build-depends/redis-conf/redis_init.sh -------------------------------------------------------------------------------- /redis/2.8/applications/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/applications/run.sh -------------------------------------------------------------------------------- /redis/2.8/applications/supervisor.conf.d/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/redis/2.8/applications/supervisor.conf.d/redis.conf -------------------------------------------------------------------------------- /ubuntu/14.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/Dockerfile -------------------------------------------------------------------------------- /ubuntu/14.04/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/README -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/apt-sources/sources.list.precise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/apt-sources/sources.list.precise -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/apt-sources/sources.list.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/apt-sources/sources.list.trusty -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/nginx-conf/default.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/nginx-conf/default.template -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/nginx-conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/nginx-conf/nginx.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/nginx-conf/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/nginx-conf/server.crt -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/nginx-conf/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/nginx-conf/server.key -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/ntp-conf/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/ntp-conf/ntp.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/pip-conf/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/pip-conf/pip.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/pip-requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/pip-requirements/requirements.txt -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/ssh-conf/sys_automation.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/ssh-conf/sys_automation.pub -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/svn-conf/.subversion.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/svn-conf/.subversion.tar.gz -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-depends/uwsgi-conf/uwsgi.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-depends/uwsgi-conf/uwsgi.ini.template -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-utils/configueUpdate/templateInvoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-utils/configueUpdate/templateInvoke.py -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-utils/hostsUpdate/mungehosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-utils/hostsUpdate/mungehosts -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-utils/hostsUpdate/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-utils/hostsUpdate/run.sh -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-utils/kernelUpdate/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-utils/kernelUpdate/run.sh -------------------------------------------------------------------------------- /ubuntu/14.04/applications/build-utils/kernelUpdate/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/build-utils/kernelUpdate/sysctl.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/run.sh -------------------------------------------------------------------------------- /ubuntu/14.04/applications/supervisor.conf.d/mysqld.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/supervisor.conf.d/mysqld.conf.bak -------------------------------------------------------------------------------- /ubuntu/14.04/applications/supervisor.conf.d/nginx.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/supervisor.conf.d/nginx.conf.bak -------------------------------------------------------------------------------- /ubuntu/14.04/applications/supervisor.conf.d/ntpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/supervisor.conf.d/ntpd.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/supervisor.conf.d/sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/supervisor.conf.d/sshd.conf -------------------------------------------------------------------------------- /ubuntu/14.04/applications/supervisor.conf.d/uwsgi.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamehiboy/micro-service-practice/HEAD/ubuntu/14.04/applications/supervisor.conf.d/uwsgi.conf.bak --------------------------------------------------------------------------------