2017-03-09
安裝
yum -y install httpd python mod_wsgi
設定
在 /etc/httpd/conf.d 目錄新建一個檔案 wsgi.conf (其他名字也可以)
內容
WSGIScriptAlias /test /var/www/html/hello.py
其中 /test 是稍後輸入在網址的路徑 or 網頁別名
/var/www/html/hello.py 是實際對應到的網頁
service httpd restart
建立測試網頁
新建立一個檔案 /var/www/html/hello.py
status = '200 OK' output = b'Hello World!' response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))] start_response(status, response_headers) return [output] |
沒有留言:
張貼留言