11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
#grant all access to /api
|
|
# restrict access to /api/patrons to localhost only
|
|
|
|
<Location /api>
|
|
require all granted
|
|
</Location>
|
|
|
|
<LocationMatch /api/v1/patrons>
|
|
require local
|
|
</LocationMatch>
|