Skip to content

Commit

Permalink
Merge branch 'release2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sporth committed Aug 1, 2024
2 parents 870ecfd + a6def3d commit 5d89870
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ public class ShibUIConfiguration {

private RestTemplate restTemplate;

@Profile("very-dangerous")
@Bean
public RestTemplate dangerousRestTemplate() throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException {
public RestTemplate restTemplate() throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException {
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
public boolean verify(String hostname, SSLSession session) {
return true;
Expand Down
2 changes: 1 addition & 1 deletion ui/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default defineConfig(({mode}) => {
};

return ({
base: `${context}/`,
base: `${context ? context : "."}/`,
server:{
port,
proxy
Expand Down

0 comments on commit 5d89870

Please sign in to comment.