mirror of https://github.com/coqui-ai/TTS.git
server: also listen to ipv6
The [::] address will listen to both ipv4/ipv6 addresses.
This commit is contained in:
parent
a53958ae3a
commit
97f98e4c45
|
@ -117,7 +117,7 @@ def tts():
|
||||||
|
|
||||||
|
|
||||||
def main():
|
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__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in New Issue