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>      
  AuthMerging Or
  Require ip 86.50.28224.251215 
</LocationMatch>

Toteuttaessa suoritus-, varaus- ja tenttitietoja hyödyntäviä palveluita, on syytä käyttää keskitettyä instanssia/proxya, jolla on kiinteä IP. Näin autorisoinnin konfigurointi on yksinkertaista. Alimpana listattu yhteiskäyttöisyyskonfiguraatio  pitää ottaa käyttöön jos yhteiskäyttöisyystoiminnallisuutta eli tenttivierailuja ja/tai yhteistenttiä halutaan käyttää (ks. yhteiskäyttöisyysasetukset).

...