Changes

Kimbro Staken <[email protected]> Fri, 31 Oct 2003 02:37:53 -0700
Newsgroups gmane.comp.web.syncato.general
Message-ID <[email protected]>
I just committed my latest changes, this includes some structural 
changes to the directory layout. Under dist/servlets there are now 
directories, open, closed and restricted. These will require changes to 
the web server configuration.

Here's an excerpt from the README about this.

For security, setup Webware with restrictions on POST PUT and DELETE 
for the
blog URL to the site and on all methods for the admin URL. You want
the base URL open so that you can have open comments, but the /WK/blog 
URL
should be protected. Note: you don't have to use the /WK/blog URL, you 
can use
something else, but it does have to have two levels.

<Location /WK>
     WKServer localhost 8086
     SetHandler webkit-handler
</Location>
<Location /WK/blog>
     AuthName "blog"
     AuthType Basic
     AuthUserFile /path/to/users

     <Limit POST PUT DELETE>
         require valid-user
     </Limit>
</Location>
<Location /WK/admin>
     AuthName "blog"
     AuthType Basic
     AuthUserFile /Users/kstaken/Sites/users

     <Limit GET POST PUT DELETE>
         require valid-user
     </Limit>
</Location>

Kimbro Staken
Software, Consulting and Writing http://www.xmldatabases.org/
Apache Xindice native XML database http://xml.apache.org/xindice
XML:DB Initiative http://www.xmldb.org



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/