You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2015/03/19 17:34:04 UTC

svn commit: r1667809 - /jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext

Author: andy
Date: Thu Mar 19 16:34:04 2015
New Revision: 1667809

URL: http://svn.apache.org/r1667809
Log:
formatting example blocks

Modified:
    jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext

Modified: jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext?rev=1667809&r1=1667808&r2=1667809&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext (original)
+++ jena/site/trunk/content/documentation/fuseki2/fuseki-security.mdtext Thu Mar 19 16:34:04 2015
@@ -40,19 +40,17 @@ The shipped `shiro.ini` has additional c
 
 This is a minimal configuration for the default configuration.
 
-```
-[main]
-localhost=org.apache.jena.fuseki.authz.LocalhostFilter
-
-[urls]
-## Control functions open to anyone
-/$/status = anon
-/$/ping   = anon
-## and the rest are restricted to localhost.
-## See above for 'localhost'
-/$/** = localhost
-/**=anon
-```
+    [main]
+    localhost=org.apache.jena.fuseki.authz.LocalhostFilter
+
+    [urls]
+    ## Control functions open to anyone
+    /$/status = anon
+    /$/ping   = anon
+    ## and the rest are restricted to localhost.
+    ## See above for 'localhost'
+    /$/** = localhost
+    /**=anon
 
 ### Simple user/password
 
@@ -60,15 +58,13 @@ This extract shows the simple user/passw
 
 It adds a `[users]` section and changes the `/$/**` line in `[urls]`
 
-```
-[users]
-admin=pw
-
-[urls]
-## Control functions open to anyone
-/$/status = anon
-/$/ping   = anon
-/$/** = authcBasic,user[admin]
-# Everything else
-/**=anon
-```
+    [users]
+    admin=pw
+
+    [urls]
+    ## Control functions open to anyone
+    /$/status = anon
+    /$/ping   = anon
+    /$/** = authcBasic,user[admin]
+    # Everything else
+    /**=anon