mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 04:28:34 +01:00
add robots.txt and prettier site
This commit is contained in:
parent
f7eff5ccd0
commit
0a8b6b3bad
1 changed files with 19 additions and 11 deletions
18
server.js
18
server.js
|
@ -117,9 +117,7 @@ this is our config file,you can change stuff here
|
|||
|
||||
app.use(function (request, response, next) {
|
||||
if (config.enablealwayshttps && !request.secure) {
|
||||
return response.redirect(
|
||||
"https://" + request.headers.host + request.url
|
||||
);
|
||||
return response.redirect("https://" + request.headers.host + request.url);
|
||||
}
|
||||
|
||||
next();
|
||||
|
@ -127,13 +125,23 @@ this is our config file,you can change stuff here
|
|||
|
||||
app.use(function (req, res, next) {
|
||||
if (req.url.match(/^\/(css|js|img|font)\/.+/)) {
|
||||
res.setHeader('Cache-Control', 'public, max-age=' + config.cacher_max_age); // cache header
|
||||
res.setHeader(
|
||||
"Cache-Control",
|
||||
"public, max-age=" + config.cacher_max_age
|
||||
); // cache header
|
||||
res.setHeader("poketube-cacher", "STATIC_FILES");
|
||||
|
||||
}
|
||||
next();
|
||||
});
|
||||
|
||||
initlog("[OK] Load headers")
|
||||
|
||||
app.get("/robots.txt", (req, res) => {
|
||||
res.sendFile(__dirname + "/robots.txt");
|
||||
});
|
||||
|
||||
initlog("[OK] Load robots.txt")
|
||||
|
||||
sinit(app, config, renderTemplate);
|
||||
|
||||
init(app);
|
||||
|
|
Loading…
Reference in a new issue