File tree Expand file tree Collapse file tree
src/main/java/eu/openanalytics/containerproxy Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131import io .undertow .servlet .api .SessionManagerFactory ;
3232import org .apache .logging .log4j .LogManager ;
3333import org .apache .logging .log4j .Logger ;
34+ import org .bouncycastle .jce .provider .BouncyCastleProvider ;
3435import org .springframework .beans .factory .annotation .Autowired ;
3536import org .springframework .boot .SpringApplication ;
3637import org .springframework .boot .actuate .health .Health ;
6162import java .net .UnknownHostException ;
6263import java .nio .file .Files ;
6364import java .nio .file .Paths ;
65+ import java .security .Security ;
6466import java .util .Arrays ;
6567import java .util .Objects ;
6668import java .util .Properties ;
@@ -93,6 +95,7 @@ public class ContainerProxyApplication {
9395 public static String sameSiteCookiePolicy ;
9496
9597 public static void main (String [] args ) {
98+ Security .addProvider (new BouncyCastleProvider ());
9699 SpringApplication app = new SpringApplication (ContainerProxyApplication .class );
97100
98101 boolean hasExternalConfig = Files .exists (Paths .get (CONFIG_FILENAME ));
You can’t perform that action at this time.
0 commit comments