开发者

How can I make this such that all can have write access [closed]

Closed. This question is off-topic. It is not currentl开发者_JAVA百科y accepting answers.

Want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 11 years ago.

Improve this question

I 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>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜