mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 04:28:34 +01:00
add enable always https
This commit is contained in:
parent
b330146c73
commit
5424e688fb
1 changed files with 8 additions and 3 deletions
11
server.js
11
server.js
|
@ -96,6 +96,7 @@ this is our config file,you can change stuff here
|
|||
tubeApi: "https://api.poketube.fun/api/",
|
||||
invapi: "https://invidious.sethforprivacy.com/api/v1",
|
||||
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
|
||||
enablealwayshttps: true, //enables always https on the server
|
||||
t_url: "https://t.poketube.fun/", // def matomo url
|
||||
};
|
||||
|
||||
|
@ -109,10 +110,14 @@ this is our config file,you can change stuff here
|
|||
}
|
||||
next();
|
||||
});
|
||||
|
||||
|
||||
app.use(function (request, response, next) {
|
||||
if (process.env.NODE_ENV != "development" && !request.secure) {
|
||||
return response.redirect("https://" + request.headers.host + request.url);
|
||||
if (config.enablealwayshttps == true) {
|
||||
if (process.env.NODE_ENV != "development" && !request.secure) {
|
||||
return response.redirect(
|
||||
"https://" + request.headers.host + request.url
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
next();
|
||||
|
|
Loading…
Reference in a new issue