hide nginx version plz, it's a security risk
>tecmint.com/hide-nginx-server-version-in-linux/strongly recommend that you block TLS 1.0, TLS 1.1, and also enable TLS 1.3 for future-proofing so that only TLS 1.2 and 1.3 are enabled
>www.cdn77.com/tls-test/result?domain=https%3A%2F%2Fsushigirl.us>libre-software.net/tls-nginx/e.g. put "ssl_protocols TLSv1.2 TLSv1.3;" to your server block, then test with "nginx -t", then "systemctl reload nginx", then check your site's tls with that link
read:
>www.packetlabs.net/tls-1-1-no-longer-secure/strongly recommend you make a robots.txt in your website root directory to tell search engine site crawlers (google bot, bing bot, yandex bot, baidu bot, etc.) to stop indexing media files so you no longer get DMCA complaints (or at least much less than before), as copyright troll bots scour through google images et al. regularly
>sushigirl.us/robots.txtUser-agent: *
Disallow: /*.bmp$
Disallow: /*.epub$
Disallow: /*.gif$
Disallow: /*.jpg$
Disallow: /*.jpeg$
Disallow: /*.mkv$
Disallow: /*.mobi$
Disallow: /*.mp3$
Disallow: /*.mp4$
Disallow: /*.pdf$
Disallow: /*.png$
Disallow: /*.webm$
it'll also cut down bandwidth usage because these crawlers download and parse every file daily
Post too long. Click here to view the full text.