This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Register a handler for process.on('exit') and in any other case(SIGINT or unhandled exception) to call process.exit() | |
process.stdin.resume();//so the program will not close instantly | |
function exitHandler(options, exitCode) { | |
if (options.cleanup) console.log('clean'); | |
if (exitCode || exitCode === 0) console.log(exitCode); | |
if (options.exit) process.exit(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## https://nginx.org/en/docs/http/ngx_http_limit_req_module.html | |
## https://www.nginx.com/blog/rate-limiting-nginx | |
## Ref. https://github.com/sportebois/nginx-rate-limit-sandbox | |
limit_req_zone $request_uri zone=by_uri:10m rate=30r/m; | |
limit_req_zone $binary_remote_addr zone=by_ip:10m rate=30r/m; | |
server { | |
listen 80; |