in reply to [OT] apache authentication default user?
It is certainly possible to do something like giving write access to logged-in users while allowing anonymous users only read access. Try
The login CGI merely redirects back to the referrer, since Apache will have done the grunt work of checking passwords. Then, in your Wiki scripts, require a logged-in user before allowing write operations.<Files "login.cgi"> <Limit GET> require valid-user </Limit> </Files>
|
|---|