Apache 2.4.33 Multiple IP restriction throwing error but single IP restriction works

To allow specific IP addresses to access the site you should have:

<RequireAny>
  Require ip 118.x.x.x
  Require ip 103.x.x.x
  Require ip 116.x.x.x
</RequireAny>

A little more info you can find in Apache documentation here: https://httpd.apache.org/docs/2.4/howto/access.html I have in mind this:

The Require provides a variety of different ways to allow or deny access to resources. In conjunction with the RequireAll, RequireAny, and RequireNone directives, these requirements may be combined in arbitrarily complex ways, to enforce whatever your access policy happens to be.