Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #71985

WSGI (was: Re: Python CGI)

Date 2014-05-25 09:01 +0200
From Christian <chris_news@arcor.de>
Subject WSGI (was: Re: Python CGI)
References <btv115Fb0rlU1@mid.individual.net> <20140519205252.264fc764@bigbox.christie.dr>
Newsgroups comp.lang.python
Message-ID <mailman.10280.1401003346.18130.python-list@python.org> (permalink)

Show all headers | View raw


On 05/20/2014 03:52 AM, Tim Chase wrote:
> While Burak addressed your (Fast-)CGI issues, once you have a
> test-script successfully giving you output, you can use the
> standard-library's getpass.getuser() function to tell who your script
> is running as.

LoadModule wsgi_module modules/mod_wsgi.so
AddHandler wsgi-script .wsgi
WSGIDaemonProcess myproj user=chris threads=3

[root@t-centos1 ~]# ps -ef|grep chris
chris     1201  1199  0 08:47 ?        00:00:00 /usr/sbin/httpd

-------------------------------------------------------8<-------
#!/usr/bin/python
import getpass
def application(environ, start_response):
    status = '200 OK'
    output = 'Hello World!'
    output += getpass.getuser()
    response_headers = [('Content-type', 'text/plain'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)

    return [output]
------------------------------------------------------->8-------

Hello World!root

Hmm, why is it root?

I'm using Apache and mod_userdir. Can I define WSGIDaemonProcess for
each user?

- Chris

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Python CGI Christian <chris_news@arcor.de> - 2014-05-19 20:32 +0200
  Re: Python CGI Burak Arslan <burak.arslan@arskom.com.tr> - 2014-05-19 21:53 +0300
  Re: Python CGI Tim Chase <python.list@tim.thechases.com> - 2014-05-19 20:52 -0500
  WSGI (was: Re: Python CGI) Christian <chris_news@arcor.de> - 2014-05-25 09:01 +0200
  WSGI (was: Re: Python CGI) Chris <ch2009@arcor.de> - 2014-05-25 09:06 +0200
    Re: WSGI (was: Re: Python CGI) alister <alister.nospam.ware@ntlworld.com> - 2014-05-25 10:04 +0000
      Re: WSGI Chris <ch2009@arcor.de> - 2014-05-25 14:22 +0200

csiph-web