There are two versions of this blog. One of them is the Node.js version, and the other one is Spring Boot wih Spring Cloud version.
The version of Node is in the branch named node, and the version tag is suffixed with node.
and
The version of SpringBoot is in the branch named node,and the version tag is suffixed with spring.
participant:
And if you wants to test the version of the Node, please follow the steps below:
npm install
npm start
localhost:3000
I use Nginx as the reverse proxy server,and here are some of the configurations I used when testing locally.
upstream Starrier{
server 127.0.0.1:3000;
keepalive 64;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name 127.0.0.1:3000;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://Starrier;
proxy_http_version 1.1;
}
2019/3/14
This project will changed by koa2 in this weekend.