Skip to content

Seasure/Starrier

 
 

Repository files navigation

Starrier

Build Status

http://www.starrier.org


Blog build with Node.js(Express)

Developer

first

npm install

second

npm start

thrid

localhost:3000

Nginx Reverse Proxy

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;
        }
        

About

http://www.starrier.org

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 49.8%
  • CSS 42.0%
  • HTML 8.2%