I’m using Apache2 and set my config file as follow to redirect any access from http://myhost.top/ghost to localhost:2368 where ghost serving on this port.
ProxyPass /ghost http://127.0.0.1:2368/
ProxyPassReverse /ghost http://127.0.0.1:2368/
And I set the ghost config:
"url":"http://myhost.top/ghost"`
But I get cannot GET /
as the response (when I open “myhost.top/ghost”)
If I use the ghost config:
"url":"http://myhost.top/"
now I can get a frontpage without css and js file loaded. Which config should I use?