You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: The hostspecs.php file also have another line with 'localhost' inside, DO NOT CHANGE IT.
When I did, I got connection refused when trying to start a session. Maybe it's bad luck. I don't know.
The text was updated successfully, but these errors were encountered:
Reproduce:
example: http://ip-not-localhost/HistomicsML
Workaround:
On chrome, open network debug, start new session.
Apparrantly, behind the scenes the browser access:
http://localhost/fcgi-bin/iipsrv.fcgi?DeepZoom=/localdata/pyramids/GBM/TCGA-02-0010-01Z-00-DX4.svs.dzi.tif_files/9/0_1.jpg
As a temporary workaround:
docker exec -t -i histomicsml_hmlweb_1 bash
service al_server stop
cd d /var/www/html/HistomicsML/php
vi hostspecs.php
$IIPServer = "http://localhost/fcgi-bin/iipsrv.fcgi?";
to
$IIPServer = "http://ip-not-localhost/fcgi-bin/iipsrv.fcgi?";
where ip-not-localhost is the external ip of the docker machine, this ip is forwarded to the client browser.
Note: The hostspecs.php file also have another line with 'localhost' inside, DO NOT CHANGE IT.
When I did, I got connection refused when trying to start a session. Maybe it's bad luck. I don't know.
The text was updated successfully, but these errors were encountered: