Skip to content
Szymon Chojnacki edited this page Feb 3, 2016 · 1 revision

piLINCS runs within its own Tomcat. piLINCS is publicly available thanks to a redirection from EH's Apache server. The server is maintained by Michal. The redirection is configured in:

/etc/apache2/mods-enabled/proxy.conf:
...
<LocationMatch "/pilincs">
   ProxyPass http://10.165.4.32:8080/pilincs
   ProxyPassReverse http://10.165.4.32:8080/pilincs
   Header add "Access-Control-Allow-Origin" "*"
</LocationMatch>
…