archivo /var/www/html/algo.py
def application(environ,start_response):
html = '\n' \
'\n' \
'\n' \
'Welcome to mod_wsgi Test Page\n' \
'\n' \
'\n' \
'\n'
status = '200 OK'
response_header = [('Content-type','text/html')]
start_response(status,response_header)
return [html]
'' chown www-data:www-data /var/www/html/algo.py '' para cambiar el dueño del archivo\\
\\