I configured demo-spring-cas-angular to work with port 8081. When I run it on my machine (OSX), it works very well.
I have a problem when it runs inside the tramps. Port 8081 Sent
config.vm.network "forwarded_port", guest: 8080, host: 8080 config.vm.network "forwarded_port", guest: 8081, host: 8081 config.vm.network "forwarded_port", guest: 8761, host: 8761 config.vm.network "forwarded_port", guest: 5432, host: 5432 config.vm.network "forwarded_port", guest: 3306, host: 3306 config.vm.network "forwarded_port", guest: 8443, host: 8443
I have no problems with ports other than 8081 (I have access to databases, eureka registry, CAS instance).
From OSX:
curl http://localhost:8081/index.html#/ curl: (52) Empty reply from server
From the tramp:
curl http://localhost:8081/index.html#/ <!doctype html> <html class="no-js"> ...
I do not see any exceptions while loading the application.
Access URLs: ---------------------------------------------------------- Local: http://127.0.0.1:8081 External: http://127.0.0.1:8081 ----------------------------------------------------------
Is this a problem with the app or with the tramp? I tried to run another application on 8081 - the problem did not occur.
source share