How set multiple IP on bind ? (with the config file) #2995
-
Hi everyone, I found in the documentation how bind multiple address $ gunicorn -b 127.0.0.1:8000 -b [::1]:8000 test:app I've even dig github and found #444 But I found nothing about the config file.. What should be the format ? bind = '127.0.0.1:80,127.0.0.1:81' bind = ['127.0.0.1:80],[127.0.0.1:81'] bind = '127.0.0.1:80'
bind = '127.0.0.1:81' Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
BobSquarePants
May 13, 2023
Replies: 1 comment
-
It seem that a Python list good. waiting confirmation to close. bind = ['127.0.0.1:80],[127.0.0.1:81'] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
BobSquarePants
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seem that a Python list good. waiting confirmation to close.