REST Service for POPCORN - ILIAS
alex
2025-11-28 21cfe68a2ac2304d9c034b9d247a61e9861af666
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# in Apache Config einfügen
 
    # proxy all requests to /popcorn/... to the globus-ilias-rest service # alex@minervis.com
    ProxyPreserveHost On
    ProxyPass /popcorn http://localhost:4101
    ProxyPassReverse /popcorn http://localhost:4101
 
    # SPA is handled by app.js!
    # Rewrite for SPA
#    <Location /popcorn/ui >
#        RewriteEngine on
#        RewriteCond %{REQUEST_FILENAME} !-d
#        RewriteCond %{REQUEST_FILENAME} !-f
#        RewriteRule . /popcorn/ui/index.html [L]
#    </Location>