apache能不能针对某一路径限制IP访问?

apache能不能针对某一路径限制IP访问?

我们的apache服务器有三个路径

[Copy to clipboard] [ - ]
CODE:
http://web.example.com/service-1
http://web.example.com/service-2
http://web.example.com/service-3

分别提供了三种服务,其中service-1和service-2服务是针对公网的,但是service-3只能提供内维护人员访问,我想问一下apache能不能通过配置文件来限制能够访问该服务的IP?
<Location xxx>
    Order deny,allow
    Deny from all
    Allow from aaa.bbb.ccc.
</Location>

看看 httpd 的文档去