[Feature Suggestion] Add quick toggles for x_robots-tag ("NO INDEX and NO FOLLOW" etc)
I know you can do it via the advanced tab, but it would be nice to have a quick toggle to make a page not indexable in search engines.
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
a quick toggle for blocking Search engines would be really nice
This one could be used as well / in addition
location = /robots.txt {
add_header Content-Type text/plain;
return 200 "User-agent: *\nDisallow: /\n";
}
a quick toggle for blocking Search engines would be really nice
This one could be used as well / in addition
location = /robots.txt { add_header Content-Type text/plain; return 200 "User-agent: *\nDisallow: /\n"; }
Just want to note this for the workaroud (because I was struggeling with it). The code should be added to the custom config in the server_proxy.conf (see the advanced chapter in the documentation).
Issue is now considered stale. If you want to keep it open, please comment :+1:
👍