Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
214 B

  1. <?php
  2. $container = $app->getContainer();
  3. $settings = $container->get('settings');
  4. $app->add(new RKA\Middleware\IpAddress(
  5. $settings['rka']['check_proxy_headers'],
  6. $settings['rka']['trusted_proxies']
  7. ));