Search results

  1. D

    Issues With Python WSGI

    Thanks for the feedback, Under my server configuration it says- Running As: user(nobody) : group(nogroup) Should I assume my configuration is correct and there is another issue or could this be incorrect?
  2. D

    Issues With Python WSGI

    ls -l provides these current permissions I have under the swap directory drwx------ 9 nobody nogroup 4096 Dec 18 11:03 swap
  3. D

    Issues With Python WSGI

    This is my LiteSpeed SAPI App configuration Name: wsgiApp Address: uds://tmp/lshttpd/lswsgi.sock Max Connections: 50 Initial Request Timeout: 60 Retry Timeout: 15 Persistent Connection: Yes Connection Keep-Alive Timeout: -1 Response Buffering: No Auto Start: Yes Command...
  4. D

    Issues With Python WSGI

    Thanks for the prompt response This is my hello world, def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) return ['Hello World!\n'] This is the contents of my stderr.log, although these errors do not stem from running the code...
  5. D

    Issues With Python WSGI

    I have followed the guides to setup WSGI including this one. I'm currently using the hello world script and keep getting a 503 error. I'm running on Ubuntu 16.04, no special install of the OS with latest stable OpenLiteSpeed installed (1.4.28) and wsgi-lsapi 1.2 Any help/guidance would be...
Top