openvidu-server: layouts antMatchers fix

pull/331/head
pabloFuente 2019-09-25 10:59:28 +02:00
parent e4362925f6
commit 6becb032d4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/").authenticated();
// Security for layouts
conf.antMatchers("/layouts/*").authenticated();
conf.antMatchers("/layouts/**").authenticated();
// Security for recorded videos
if (openviduConf.getOpenViduRecordingPublicAccess()) {