Redirect plain URL to hash for ticket deep links
This commit is contained in:
parent
0a05cad0a1
commit
229daa72fc
|
@ -36,6 +36,10 @@ server {
|
||||||
# Also provide "_hidden" for by, since it's not relevant.
|
# Also provide "_hidden" for by, since it's not relevant.
|
||||||
proxy_set_header Forwarded "for=$remote_addr;proto=https;host=$host;by=_hidden";
|
proxy_set_header Forwarded "for=$remote_addr;proto=https;host=$host;by=_hidden";
|
||||||
|
|
||||||
|
location ~/(ticket/zoom/.*) {
|
||||||
|
return 302 https://zammad.hamburg.ccc.de/#$1;
|
||||||
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:8080/;
|
proxy_pass http://127.0.0.1:8080/;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue