Parsoid and VisualEditor are working great with this setup for everything except images. When I first add an image (VE --> Insert --> Media) it works as expected. The image displays and is configurable. When I save the page everything functions properly. However, when I click edit again the image does not show. Shortly thereafter the request for the image times out and I get the following error in the browser console:
GET http://<my-domain>:9000/bme/img_auth.php/thumb/6/66/BME_sign.jpg/400px-BME_sign.jpg net::ERR_CONNECTION_TIMED_OUT
Note that it's attempting to load the image over port 9000, not 443.
Is there a way to tell images to load over the standard entry point?
Parsoid should be producing links relative to the base element, https://github.com/wikimedia/parsoid/blob/master/lib/wt2html/DOMPostProcesso... which, as I understood, VE on the page ignores.
Can you provide the wikitext that got saved and the subsequent html it's producing?
You might want to forgo the suggestion from the troubleshooting page and just set `parsoidConfig.strictSSL = false;`, https://github.com/wikimedia/parsoid/blob/master/localsettings.js.example#L1...