changes to dev.py seem to break ssh port forwarding
Hey @himanel1
I think the changes you pushed two days ago to dev.py break ssh port forwarding. For us this is really important for remote work, since nomad is usually hosted inside our intranet and remote desktop is unhandy. As I understand it you hardcode the api base url:
'{"https" if config.services.https else "http"}://{config.services.api_host}:{config.services.api_port}{config.services.api_base_path.rstrip("/")}'
whcih results in the gui asking for ressources which they dont see.
Was this intentional? This removes unfortunately an important requirement.
We usually access like this:
ssh -L 8002:nomad3-dev:80 a2853@<url>
Best Micha