Kuldeepsinh
Kuldeepsinh

Reputation: 49

Does python WSGI supports IPv6?

I am using python WSGI module for servicing IPv4 http requests. Does WGSI support IPv6 requests? Can it listen to IPv6 IP port combination?

Upvotes: 1

Views: 606

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599876

WSGI is completely unconcerned with IP versions; it is a specification for communication between a webserver and Python code. It is up to your server - Apache, nginx, gunicorn, uwsgi, whatever - to listen to the port.

Upvotes: 1

Related Questions