Closed jafamo closed 5 years ago
If you've configured Tomcat to listen on port 80, you'll need to change wayback.url.port.default
to match:
wayback.url.port.default=80
As, @anjackson mentions, port 80 wouldn't be serving OpenWayback if you have wayback.url.port.default=8080
in your configuration. It looks like from your comment that you also tried 8080, and it wasn't working either. Looking at the 404 screenshot, it looks to me like you would have been trying the URL http://localhost:8080/query to reach that screen. The default home page for the application should be http://localhost:8080/wayback/. Does that URL work for you? If not, did you change anything in your standardaccesspoint
bean?
Hi, @anjackson & @ldko I resolved my problem. I change in my wayback.xml
<!-- <property name="replayPrefix" value="${wayback.url.prefix}/wayback/" />-->
<property name="replayPrefix" value="http://mydomain:8080/wayback/" />
<!-- <property name="queryPrefix" value="${wayback.url.prefix}/wayback/" /> -->
<property name="queryPrefix" value="http://mydomain:8080/wayback/" />
<!-- <property name="staticPrefix" value="${wayback.url.prefix}/wayback/" /> -->
<property name="staticPrefix" value="http://mydomain:8080/wayback/" />
Thanks, jafamo.
I installed openwayback-2.3.2.war with apache-tomcat-8.5.38 as ROOT webapp.
My wayback.xml config file:
My error from catalina.out:
I tried port 80,8080 but not working properly.
any idea ?
Regards, xavi