Created
October 22, 2015 06:24
-
-
Save ziplus4/57f074eec5c54106a124 to your computer and use it in GitHub Desktop.
uwsgi 테스트 코드
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test.py | |
def application(env, start_response): | |
start_response('200 OK', [('Content-Type','text/html')]) | |
#return [b"Hello World"] # python3 | |
return ["Hello World"] # python2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment