Replies: 14 comments 17 replies
-
ask facebook :D |
Beta Was this translation helpful? Give feedback.
-
the warning will go away with next release.
i expect the "spider" program to fetch the "robots.txt" only at start, so if it's already started it's normal to have no effect |
Beta Was this translation helpful? Give feedback.
-
So, it's not this https://developers.facebook.com/docs/sharing/bot/
|
Beta Was this translation helpful? Give feedback.
-
you don't put it, that's the whole point of the plugin. anyway, these 2 facebook bots seems to be different, as they have different goals. |
Beta Was this translation helpful? Give feedback.
-
"fully downloaded" means that, to the last byte.
i'd be glad to get your suggestion on what description of my plugin would be clearer for you.
"help section" sounds like a lot of content. |
Beta Was this translation helpful? Give feedback.
-
it's easier than reading javascript :D it's probably the most simple plugin out there |
Beta Was this translation helpful? Give feedback.
-
Hi Rejetto, Maybe an idea to block ip adresses with a specific agent? Kind regards, |
Beta Was this translation helpful? Give feedback.
-
just wrote this server_code but didn't test it, so it will probably not work :) exports.init = api => {
const { block } = api.require('./block')
return {
middleware(ctx) {
if (ctx.get('user-agent').includes('Facebook')) {
block.set(x => [...x, { ip: ctx.ip, comment: 'facebook' }])
ctx.socket.destroy()
}
}
}
} |
Beta Was this translation helpful? Give feedback.
-
you set all the expirations by hand for each line? |
Beta Was this translation helpful? Give feedback.
-
since the blocked ip supports wildcards, one can specify multiple ips like 1.1.1.1|2.2.2.2|3.3.3.3 would you prefer the block from the log to just add the ip to a single line/rule to not have so many? |
Beta Was this translation helpful? Give feedback.
-
not talking about facebook now, i specified "block from log" because i saw you have many of those entries. |
Beta Was this translation helpful? Give feedback.
-
yes, but it's no need to be in ranges, the wildcards worka also by separating single ip with "|" character. |
Beta Was this translation helpful? Give feedback.
-
ok, but as i highlighted before, you would get just one expiration date. |
Beta Was this translation helpful? Give feedback.
-
ok, from version 0.54 it will append on existing rule |
Beta Was this translation helpful? Give feedback.
-
Hi,
I noticed strange activity for some days now. Several ip adress from the USA are downloading systematicly files from my server. The agen is in every case Facebookexternalhit/1.1
What is this? It can not be human activity, because it goes on and on. The whole day. See my screenshot.
Kind regards,
Henk - PH5HP.nl - fileserver.ph5hp.nl
Beta Was this translation helpful? Give feedback.
All reactions