diff --git a/docs/example.nginx.conf b/docs/example.nginx.conf index 34d114402..a54687560 100644 --- a/docs/example.nginx.conf +++ b/docs/example.nginx.conf @@ -116,7 +116,7 @@ server { try_files $uri =404; } - location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media|profile|contacts|todo|filepicker|debug|kanban|sheet)$ { + location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media|profile|contacts|todo|filepicker|debug|kanban|sheet|support|admin|notifications|teams)$ { rewrite ^(.*)$ $1/ redirect; } diff --git a/scripts/evict-inactive.js b/scripts/evict-inactive.js index ebb65d637..366640ce6 100644 --- a/scripts/evict-inactive.js +++ b/scripts/evict-inactive.js @@ -25,6 +25,12 @@ var store; var pins; var Log; var blobs; + +var startTime = +new Date(); +var msSinceStart = function () { + return (+new Date()) - startTime; +}; + nThen(function (w) { // load the store which will be used for iterating over channels // and performing operations like archival and deletion @@ -57,6 +63,8 @@ nThen(function (w) { } blobs = _; })); +}).nThen(function () { + Log.info("EVICT_TIME_TO_LOAD_PINS", msSinceStart()); }).nThen(function (w) { // this block will iterate over archived channels and removes them // if they've been in cold storage for longer than your configured archive time @@ -276,6 +284,8 @@ nThen(function (w) { }; store.listChannels(handler, w(done)); +}).nThen(function (w) { + Log.info("EVICT_TIME_TO_RUN_SCRIPT", msSinceStart()); }).nThen(function () { // the store will keep this script running if you don't shut it down store.shutdown();