I am unable to get a valid response from my server (Ubuntu 16.04) at DigitalOcean after installing OSRM succefully. I have followed the instructions here:
https://github.com/Project-OSRM/osrm-backend/wiki/Running-OSRM
When running the following:
osrm-routed netherlands-latest.osrm
I am getting the following output in my console:
[info] starting up engines, v5.18.0
[info] Threads: 2
[info] IP address: 0.0.0.0
[info] IP port: 5000
[info] http 1.1 compression handled by zlib version 1.2.8
[info] Listening on: 0.0.0.0:5000
[info] running and waiting for requests
Now when I try to access my server at port 5000:
http://123.456.789.000:5000/route/v1/driving/13.388860,52.517037;13.385983,52.496891?steps=true
Is not giving me any response (timeout). I tried the actual domain name as well.
I have also tried to setup a reverse proxy. But apache is also not giving me any logs. Note that this is in my config (/etc/apache2/sites-available/000-default.conf):
<VirtualHost *:8080>
ServerName my.domain.nl
ProxyPass / http://localhost:5000
ProxyPassReverse / http://localhost:5000
ProxyRequests Off
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
I have also verified that no firewall is running. Any idea what I could be missing here?