Skip to content

Commit

Permalink
add simplytranslate caddy config with redirect from lingva
Browse files Browse the repository at this point in the history
  • Loading branch information
FarisZR committed Jun 7, 2024
1 parent 0c9afe0 commit 772e6fb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions caddy/config/simplytranslate.caddy
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
lingva.aosus.org {
redir https://simplytranslate.aosus.link{uri} 301
header Cache-Control "max-age=2592000, stale-while-revalidate=2592000"
}

lingva.aosus.link {
redir https://simplytranslate.aosus.link{uri} 301
header Cache-Control "max-age=2592000, stale-while-revalidate=2592000"
}

simplytranslate.aosus.link {
reverse_proxy simplytranslate:5000
respond /robots.txt 200 {
body "User-agent: *
Disallow: /"
}
handle_errors {
# handle_errors is only triggerd on erros from Caddy and not the proxy, that's why we don't specifiy any errors here.
rewrite * /proxy_error_page.html
file_server {
root /srv/
}
}
header {
X-Robots-Tag "noindex, noarchive, nofollow, nosnippet"
X-XSS-Protection "1; mode=block"
}
encode zstd gzip
}

0 comments on commit 772e6fb

Please sign in to comment.