<div dir="ltr"><div>I'm using nginx unit. I'm attempting to pass a query string to a python script that unit is hosting via curl as a test. A hello_world.py example works fine, implying unit configuration is not the issue. Example URLs listed below. My code is receiving an empty string for environ.QUERY_STRINGĀ in every case. What is the appropriate procedure or URL format to pass arguments into a wsgi python script via nginx unit?</div><div><br></div><div>My tests showed that with module set no additional path needed to be provided. The IP address and port was enough to run hello_world.py.</div><div><br></div><div>VARIATIONS:</div><div>curl <a href="http://127.0.0.1:8888?v1=1&v2=2">127.0.0.1:8888?v1=1&v2=2</a><br></div><div>curl <a href="http://127.0.0.1:8888/?v1=1&v2=2">127.0.0.1:8888/?v1=1&v2=2</a></div><div>curl <a href="http://127.0.0.1:8888/index?v1=1&v2=2">127.0.0.1:8888/index?v1=1&v2=2</a><br></div><div>curl <a href="http://127.0.0.1:8888/index.py?v1=1&v2=2">127.0.0.1:8888/index.py?v1=1&v2=2</a><br></div></div>