forked from loafle/openapi-generator-original
* migrate mysql samples to oas 3.0 * update apache2 to use oas3 spec * migrate graphql samples to use oas3 spec * move avro script under bin * update protobuf samples to use openapi3 spec * add new files
40 lines
924 B
Plaintext
40 lines
924 B
Plaintext
<Location "/v2/store/order/{orderId}/store/order/*/">
|
|
AuthBasicProvider file
|
|
AuthUserFile "/var/www/html/htpwd"
|
|
AuthGroupFile "/var/www/html/groups"
|
|
AuthType basic
|
|
AuthName "api"
|
|
<LimitExcept GET POST PUT DELETE>
|
|
Require valid-user
|
|
</LimitExcept>
|
|
<Limit DELETE>
|
|
Require valid-user
|
|
</Limit>
|
|
<Limit GET>
|
|
Require valid-user
|
|
</Limit>
|
|
</Location>
|
|
<Location "/v2/store/inventory/store/inventory/">
|
|
AuthBasicProvider file
|
|
AuthUserFile "/var/www/html/htpwd"
|
|
AuthGroupFile "/var/www/html/groups"
|
|
AuthType basic
|
|
AuthName "api"
|
|
<LimitExcept GET POST PUT DELETE>
|
|
Require valid-user
|
|
</LimitExcept>
|
|
</Location>
|
|
<Location "/v2/store/order/store/order/">
|
|
AuthBasicProvider file
|
|
AuthUserFile "/var/www/html/htpwd"
|
|
AuthGroupFile "/var/www/html/groups"
|
|
AuthType basic
|
|
AuthName "api"
|
|
<LimitExcept GET POST PUT DELETE>
|
|
Require valid-user
|
|
</LimitExcept>
|
|
<Limit POST>
|
|
Require valid-user
|
|
</Limit>
|
|
</Location>
|