adding security config

This commit is contained in:
2025-12-24 10:03:40 +00:00
parent 2f8a561ffe
commit 19cad9a450

View File

@@ -0,0 +1,22 @@
package com.abnov.infisicalbridge.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.web.SecurityFilterChain;
@Configuration
public class SecurityConfig {
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http
.csrf(csrf -> csrf.disable())
.cors(cors -> cors.disable())
.authorizeHttpRequests(auth -> auth
.requestMatchers("/webhook/**").permitAll()
.anyRequest().authenticated());
return http.build();
}
}