summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java4
-rw-r--r--bkucommon/src/site/apt/configuration.apt4
2 files changed, 4 insertions, 4 deletions
diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java b/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java
index e56bb861..2debb2fc 100644
--- a/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java
+++ b/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java
@@ -241,9 +241,9 @@ public class PKIProfileFactoryBean implements FactoryBean, ResourceLoaderAware {
return order.toArray(new String[order.size()]);
}
}
- log.info("configure default revocation service type order: [OCSP, CRL]");
+ log.info("configure default revocation service type order: [CRL, OCSP]");
return new String[]
- { RevocationSourceTypes.OCSP, RevocationSourceTypes.CRL };
+ { RevocationSourceTypes.CRL, RevocationSourceTypes.OCSP };
}
@Override
diff --git a/bkucommon/src/site/apt/configuration.apt b/bkucommon/src/site/apt/configuration.apt
index c288c98e..ec6b7cd0 100644
--- a/bkucommon/src/site/apt/configuration.apt
+++ b/bkucommon/src/site/apt/configuration.apt
@@ -70,9 +70,9 @@ MOCCA Configuration
[<<<sslProtocol>>>] Options: <<<TLS>>> (default) or <<<SSL>>>
- [<<<revocationServiceOrder>>>] Comma-separated (ordered) list of revocation services to be used, e.g. "<<<CRL,OCSP>>>". Any revocation service not contained in the list will be disabled.
+ [<<<revocationServiceOrder>>>] Comma-separated (ordered) list of revocation services to be used, e.g. "<<<OCSP,CRL>>>". Any revocation service not contained in the list will be disabled.
- Default: <<<OCSP,CRL>>>
+ Default: <<<CRL,OCSP>>>
[]