在apache2.4.6中配置虛擬主機支持web.py

 

web.py 是一個簡單好用的python web框架。 (http://webpy.org/)
apache httpd是一款開源配置簡單的web容器。 (http://apache.org/)html

假設您使用的是apache2.4.6,您能夠經過如下配置支持web.py應用。python

add the config of follow to /etc/httpd/conf/httpd.conf

<VirtualHost *:443>  
    DocumentRoot "/appvol/appname"  
    ServerName app.net   
    WSGIScriptAlias / /appvol/appname/index.wsgi/  
    Alias /static  /appvol/appname/static/  
    AddType text/html .py  
    <Directory "/appvol/appname">  
     Options FollowSymLinks  
     AllowOverride All  
     Require all granted  
    </Directory>
</VirtualHost>
相關文章
相關標籤/搜索