chore(wizdesk/caddy): add x-robots-tag header to certain hosts

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-04-23 16:37:37 -03:00
parent 0596629c20
commit 2b551e1887
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -11,16 +11,19 @@
virtualHosts."jellyfin.thewizard.link".extraConfig = ''
encode gzip
header X-Robots-Tag "none"
reverse_proxy 127.0.0.1:8096 {
flush_interval -1
}
'';
virtualHosts."jellyseerr.thewizard.link".extraConfig = ''
header X-Robots-Tag "none"
reverse_proxy http://127.0.0.1:5055
'';
virtualHosts."foundry.thewizard.link".extraConfig = ''
header X-Robots-Tag "none"
reverse_proxy 127.0.0.1:30000 {
flush_interval -1
}
@ -32,18 +35,22 @@
virtualHosts."files.thewizard.link".extraConfig = ''
root * /srv/files
header X-Robots-Tag "none"
file_server
'';
virtualHosts."torrent.thewizard.link".extraConfig = ''
header X-Robots-Tag "none"
reverse_proxy 127.0.0.1:8144
'';
virtualHosts."shoko.thewizard.link".extraConfig = ''
header X-Robots-Tag "none"
reverse_proxy 127.0.0.1:8111
'';
virtualHosts."nixbin.thewizard.link".extraConfig = ''
header X-Robots-Tag "none"
reverse_proxy 127.0.0.1:7373
'';
};