HTTP/1.1 404 Not Found
Date: Fri, 14 Jun 2019 06:45:05 GMT
Server: Apache/2.2.15 (CentOS)
Content-Length: 294
Connection: close
Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /api_v3/index.php was not found on this server.</p>
<hr>
<address>Apache/2.2.15 (CentOS) Server at 192.168.0.10 Port 443</address>
</body></html>
Docker image: kaltura/server:latest
Funny thing is that if I set KALTURA_VIRTUAL_HOST_NAME="localhost", then Nginx complains that port 80 is being used.
I'm trying to install kaltura server in an all-in-one docker container. Here is my config.ans:
When I ran
docker exec -i -t kaltura /root/install/install.sh
it fails with the message
ERROR: Couldn't make an API request to https://192.168.0.10:443/api_v3/index.php?service=system&action=ping.
Note that the SSL cert and key are the ones shipped with the docker image. I did not replace them with those that are signed by a trusted CA.
When I run the command
curl -ik 'https://192.168.0.10:443/api_v3/index.php?service=system&action=ping'
it gives me
Docker image: kaltura/server:latest
Funny thing is that if I set
KALTURA_VIRTUAL_HOST_NAME="localhost"
, then Nginx complains that port 80 is being used.