Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# interface for getting exam records
<LocationMatch /integration/record>
 
 # if want to block all connections to interface
  Require all denied 

 # if want to allow connections only from specific ip address/addresses use this instead
 # Require ip x.x.x

</LocationMatch>

# interface for getting reservation/room/exam/reports data
<LocationMatch /integration/(reservations|rooms|exams|reports)>   
  
  # if want to block all connections to interfaces 
  Require all denied 

 # if want to allow connections only from specific ip address/addresses use this instead
 # Require ip x.x.x 

</LocationMatch>

# interface for IOP services, allow access from dedicated XM server 
<LocationMatch /integration/iop>
# When using interoperability services (exam visits and/or joint exams) use this. This ip is for IOP test service.
  Require ip 86.50.28224.251215

# If not using IOP services (exam visits and/or joint exams) use this instead
# Require all denied

</LocationMatch>

...