How can I make this such that all can have write access [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this questionI have installed Apache Web server for the purpose of local repository .
I have this lines for my directory .
# Allow universal read-access, but writes are restricted
# to the admin user.
<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Directory>
Could anybody please tell me how can i provide write access to all the users not only the admin in this case .
Thanks .
How can I make this such that all can have write access (Not just the admin user)
You can require valid-user
instead.
<LimitExcept GET OPTIONS>
require valid-user
</LimitExcept>
精彩评论