1 | initial version |
Well, I don't understand why it wouldn't work. I'm out of ideas. As an alternative, you could try setting up apache as a reverse proxy, like this
<VirtualHost *:80>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
or use a different port if you have apache already running other sites (you could try using a different path on the same port, like ProxyPass /sage http://localhost:8080/
, but I'm afraid it could break some links inside the notebook).