|
1. Install apache and mod_wsgi.
|
|
2. Add this line to your apache config file
|
|
|
|
WSGIScriptAlias /bfcs /path/to/web/folder/app.wsgi
|
|
|
|
3. Restart apache and you should be able to see BCFS web display at "/bfcs".
|
|
|
|
For htdocs folder:
|
|
|
|
Add this to your apache config file:
|
|
|
|
Alias /htdocs /path/to/htdocs
|
|
<Directory /path/to/htdocs>
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|