bugy / script-server

Web UI for your scripts with execution management
Other
1.52k stars 244 forks source link

Connect with IPV6 address #691

Open olm52 opened 10 months ago

olm52 commented 10 months ago

Is connecting with IPV6 address possible? I have tried in a browser something like:

but is not working, The IPV6 address used is fine with ssh also from remote location.

olm52 commented 10 months ago

It seems that adding

"address": "::"

to /opt/script-server/conf/conf.json is solving the problem. How to accept both IPV4 and IPV6?

bugy commented 10 months ago

Hi @olm52, could you try editing source code src/model/server_conf.py and change this line:

address = "0.0.0.0"

to

address = None

And remove "address" configuration from conf.json file

olm52 commented 10 months ago

Just done and is working both local and remote. Thanks