bekkalokk/ingress: proxy matrix well-known files to bicep

This commit is contained in:
2023-11-28 05:43:23 +01:00
committed by h7x4
parent d900dc1b1b
commit 1ef033c754
2 changed files with 23 additions and 1 deletions

View File

@@ -38,6 +38,16 @@
# Redirect everything else to the main website
"/".return = "301 https://www.pvv.ntnu.no$request_uri";
# Proxy the matrix well-known files
# Host has be set before proxy_pass
# The header must be set so nginx on the other side routes it to the right place
"/.well-known/matrix/" = {
extraConfig = ''
proxy_set_header Host matrix.pvv.ntnu.no;
proxy_pass https://matrix.pvv.ntnu.no/.well-known/matrix/;
'';
};
};
};
};