kalkspace / bbb_ansible

1 stars 1 forks source link

Redirects für neues Greenlight #34

Closed mraerino closed 1 year ago

mraerino commented 1 year ago

Redirects: /b/signup (v2) -> /signup (v3) /b/kal-kpg-ink (Kegelbahn) -> /rooms/gdf-1yc-88b-yxb/join

mraerino commented 1 year ago

done in /etc/nginx/sites-enabled/bigbluebutton

  location = /b/signup {
    return 301 /signup;
  }

  location = /b/kal-kpg-ink {
    return 301 /rooms/gdf-1yc-88b-yxb/join;
  }