diff --git a/Deployment-to-JEE-and-Servlet-containers.md b/Deployment-to-JEE-and-Servlet-containers.md
index dc95755..ee03bb3 100644
--- a/Deployment-to-JEE-and-Servlet-containers.md
+++ b/Deployment-to-JEE-and-Servlet-containers.md
@@ -4,7 +4,7 @@
For JBoss 7.X, Wildfly 8.X (not tested for 9.X & 10.X) when deploying gitbucket, you will probably face the following deployment error: `java.lang.NoClassDefFoundError: com/sun/net/ssl/internal/ssl/Provider`.
-Due to class loading restrictions inside JBoss/Wildfly, you need to explicitly allow gitbucket to access some classes from the jdk. For that, modifiy gitbucket.war and add the following under `WEB-INF\jboss-deployment-structure.xml`
+Due to class loading restrictions inside JBoss/Wildfly, you need to explicitly allow gitbucket to access some classes from the jdk. For that, modify gitbucket.war and add the following under `WEB-INF\jboss-deployment-structure.xml`
```
@@ -21,14 +21,26 @@ Due to class loading restrictions inside JBoss/Wildfly, you need to explicitly a
```
-## Wildfly 9.X
+## Wildfly 9.X, Wildfly 10.X
-*TODO*
-
-## Wildfly 10.X
-
-*TODO*
+ Wildfly 9.X & 10.X have the same class loading restrictions as previous versions. So also here you need to explicitly allow gitbucket to access some classes from the jdk. are similar to previous versions. Modify gitbucket.war and add the following under `WEB-INF\jboss-deployment-structure.xml`
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
# Tomcat