summaryrefslogtreecommitdiffstats
path: root/pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp')
-rw-r--r--pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp13
1 files changed, 13 insertions, 0 deletions
diff --git a/pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp b/pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp
new file mode 100644
index 000000000..d3a2276bd
--- /dev/null
+++ b/pki/linux/ocsp-ui/shared/webapps/ROOT/index.jsp
@@ -0,0 +1,13 @@
+<!-- --- BEGIN COPYRIGHT BLOCK ---
+ Copyright (C) 2006 Red Hat, Inc.
+ All rights reserved.
+ --- END COPYRIGHT BLOCK --- -->
+<%
+ String op = request.getParameter("op");
+ if (op == null || op.equals("")) {
+ String redirectURL = "/ca/ee/ca";
+ response.sendRedirect(redirectURL);
+ } else if (op.equals("enroll")) {
+ /* redirect to enrollment servlet */
+ }
+%>