mirror of https://github.com/coqui-ai/TTS.git
server: also listen to ipv6
The [::] address will listen to both ipv4/ipv6 addresses.pull/446/head
parent
ef37633cb3
commit
f5fd7f78d4
|
@ -117,7 +117,7 @@ def tts():
|
|||
|
||||
|
||||
def main():
|
||||
app.run(debug=args.debug, host="0.0.0.0", port=args.port)
|
||||
app.run(debug=args.debug, host="::", port=args.port)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue