From: Ilja S. <ilj...@he...> - 2012-07-27 13:16:36
|
Hello, I've been trying to use wayback machine (1.4.2., upgrading to 1.6 is not possible currently) over https, but so far, the correct configuration keeps evading me. 1) I've set a DNS alias to point to my wayback server (not sure if relevant) 2) Apache is forwarding requests to port 443 to tomcat via ajp: ProxyPass / ajp://localhost:8009/ 3) I have an access point setup as follows: <bean name="80" class="org.archive.wayback.webapp.AccessPoint"> <property name="collection" ref="localcdxcollection" /> <property name="replay" ref="archivalurlreplay" /> <property name="query"> <bean class="org.archive.wayback.query.Renderer"> <property name="captureJsp" value="/WEB-INF/query/CalendarResults.jsp" /> </bean> </property> <property name="uriConverter"> <bean class="org.archive.wayback.archivalurl.ArchivalUrlResultURIConverter"> <property name="replayURIPrefix" value="https://my.fqdn/"/> </bean> </property> <property name="parser"> <bean class="org.archive.wayback.archivalurl.ArchivalUrlRequestParser"> <property name="maxRecords" value="1000" /> <property name="earliestTimestamp" value="2006" /> </bean> </property> <property name="exclusionFactory" ref="static-exclusion" /> <property name="exactSchemeMatch" value="false" /> </bean> I have also another, working access point (basically localhost:8080). If I use http (also in apache), this access point works. Now I get null for my AccessPoint when I try to access it from my jsp pages. Any hints on what I am doing wrong would be greatly appreciated. Ilja Sidoroff |