diff options
author | Vincent Ambo <mail@tazj.in> | 2022-07-28T17·08+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-07-28T17·50+0000 |
commit | d2176bb8fb179613cfa997a73199476ed5512071 (patch) | |
tree | deb751bd96b2481738959abfb411ef1b1ef662c4 /ops | |
parent | ba682cd91b3f8ce04478ac3b29c3230fc3f443f5 (diff) |
feat(ops/www): add predlozhnik redirect on tazj.in r/4337
otherwise posting this to reddit's /r/russian is not possible, as they ban all links to Russian-affiliated sites Change-Id: I8d23f0961ec7ef097fc2dbdd0aaa178861a19c10 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5992 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'ops')
-rw-r--r-- | ops/modules/www/tazj.in.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ops/modules/www/tazj.in.nix b/ops/modules/www/tazj.in.nix index a53ef904f573..3b80222e0d66 100644 --- a/ops/modules/www/tazj.in.nix +++ b/ops/modules/www/tazj.in.nix @@ -29,6 +29,10 @@ try_files $uri $uri.html $uri/ =404; } + location = /predlozhnik { + return 302 https://predlozhnik.ru; + } + # Temporary place for serving static files. location /blobs/ { alias /var/lib/tazjins-blobs/; |