[cas-user] Re: CAS 6.6.5 to 7.0.4 - customized css and js with prohibited access from html.

2024-05-15 Thread Leonardo Ferreira
Thank you Meysam! Em terça-feira, 14 de maio de 2024 às 13:11:21 UTC-3, Meysam Shirazi escreveu: > Hi Leonardo > > I guess the main cause is that the */ect *is not in the list of secure > path of the application. Spring Boot , by default, permit access to > /css/**, /js/**, /images/**, and

[cas-user] Re: CAS 6.6.5 to 7.0.4 - customized css and js with prohibited access from html.

2024-05-14 Thread Meysam Shirazi
Hi Leonardo I guess the main cause is that the */ect *is not in the list of secure path of the application. Spring Boot , by default, permit access to /css/**, /js/**, /images/**, and /**/favicon.ico. you can use custom theme for this purpose. On Tuesday, May 14, 2024 at 3:39:50 PM UTC+3:30

[cas-user] Re: CAS 6.6.5 to 7.0.4 - customized css and js with prohibited access from html.

2024-05-14 Thread Leonardo Ferreira
After researching a little, I discovered that in version 7.0.x a new class was added restricting access to the application directories. The class name is: CasWebSecurityConfigurerAdapter After inspecting it, I changed the directory structure and it started working again. src: - main: -