Thumbor comment
This commit is contained in:
parent
15ddbcf3bb
commit
9555907443
1 changed files with 8 additions and 1 deletions
7
index.js
7
index.js
|
@ -17,6 +17,13 @@ app.listen(PORT, () => {
|
||||||
app.use(express.static(staticpath))
|
app.use(express.static(staticpath))
|
||||||
|
|
||||||
var thumbCount = 0
|
var thumbCount = 0
|
||||||
|
|
||||||
|
// Proxy images through thumbor instances that alternate to prevent:
|
||||||
|
// 1. Direct communication with Youtube Services
|
||||||
|
// 2. Getting rate limited
|
||||||
|
// 3. Gathering too much data from one source
|
||||||
|
// more thumbor instances will be added
|
||||||
|
|
||||||
var thumborInstances = [
|
var thumborInstances = [
|
||||||
"https://thumbor-production-0e82.up.railway.app/",
|
"https://thumbor-production-0e82.up.railway.app/",
|
||||||
"https://enormous-book-production.up.railway.app/",
|
"https://enormous-book-production.up.railway.app/",
|
||||||
|
|
Loading…
Reference in a new issue