add experimental varnish headers
This commit is contained in:
parent
025f201ea8
commit
2bd532bc20
@ -55,6 +55,10 @@ function handleQuery(req, res){
|
|||||||
res.header("Access-Control-Allow-Origin", "*");
|
res.header("Access-Control-Allow-Origin", "*");
|
||||||
res.header("Access-Control-Allow-Headers", "X-Requested-With");
|
res.header("Access-Control-Allow-Headers", "X-Requested-With");
|
||||||
|
|
||||||
|
// set cache headers
|
||||||
|
res.header('Last-Modified', new Date().toUTCString());
|
||||||
|
res.header('Cache-Control', 'no-cache,max-age=3600,must-revalidate, public');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!_.isString(sql)) throw new Error("You must indicate a sql query");
|
if (!_.isString(sql)) throw new Error("You must indicate a sql query");
|
||||||
var pg;
|
var pg;
|
||||||
@ -70,6 +74,7 @@ function handleQuery(req, res){
|
|||||||
function setDBGetUser(err, data) {
|
function setDBGetUser(err, data) {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
database = (data == "" || _.isNull(data)) ? database : data;
|
database = (data == "" || _.isNull(data)) ? database : data;
|
||||||
|
res.header('X-Cache-Channel', database);
|
||||||
oAuth.verifyRequest(req, this);
|
oAuth.verifyRequest(req, this);
|
||||||
},
|
},
|
||||||
function querySql(err, user_id){
|
function querySql(err, user_id){
|
||||||
|
Loading…
Reference in New Issue
Block a user