Compare commits

..

No commits in common. "a1275ec06cf9a6e20f2096d6c1ac430cdb11b09f" and "6794e567481163bf04c9b87b281e2b9661031461" have entirely different histories.

7 changed files with 11 additions and 18 deletions

View File

@ -11,12 +11,12 @@ import java.util.ArrayList;
@Configuration
public class OpenApiConfig {
@Value("${api.baseUrl}")
private String baseUrl;
@Value("${api.corsResolveUrl}")
private String corsResolveUrl;
@Bean
public OpenAPI openAPI(){
Server httpsServer = new Server().url(baseUrl);
Server httpsServer = new Server().url(corsResolveUrl);
OpenAPI openApi = new OpenAPI();
ArrayList<Server> servers = new ArrayList<>();
servers.add(httpsServer);

View File

@ -29,9 +29,8 @@ public class SecuirtyConfig {
http
.authorizeHttpRequests(auth -> auth
.anyRequest().authenticated()
).csrf(csrf -> csrf.disable())
.with(new OAuth2LoginConfigurer<>(),
oauth2 -> oauth2.userInfoEndpoint(u -> u.oidcUserService(customOidcUserConfiguration)));
)
.with(new OAuth2LoginConfigurer<>(), oauth2 -> oauth2.userInfoEndpoint(u -> u.oidcUserService(customOidcUserConfiguration)));
return http.build();

View File

@ -1,4 +1,4 @@
api.baseUrl=http://localhost:8080
api.corsResolveUrl=http://localhost:8080
management.health.db.enabled=true
management.endpoints.web.exposure.include=health

View File

@ -1 +1 @@
api.baseUrl=https://cftunnels.hithomelabs.com
api.corsResolveUrl=https://cftunnels.hithomelabs.com

View File

@ -1 +1 @@
api.baseUrl=https://testcf.hithomelabs.com
api.corsResolveUrl=https://testcf.hithomelabs.com

View File

@ -4,12 +4,6 @@ cloudflare.apiKey=${CLOUDFLARE_API_KEY}
cloudflare.email=${CLOUDFLARE_EMAIL}
spring.profiles.active=${ENV}
# set root level
logging.level.root=INFO
# package-specific
logging.level.org.springframework=TRACE
logging.level.com.myapp=INFO
/ * * Masking sure app works behind a reverse proxy
server.forward-headers-strategy=framework