4fa129a201
--HG-- extra : convert_revision : 8db9e8f5e94e5082d16b92214f875882c18d3791
20 lines
454 B
Text
20 lines
454 B
Text
# Instructions for loading mod_wsgi.
|
|
#
|
|
case "${ACTION}" in
|
|
post)
|
|
cat << _EOF
|
|
==========================================================================
|
|
|
|
To enable ${PKGNAME} in the Apache HTTP server, add the following line
|
|
into /etc/httpd/httpd.conf:
|
|
|
|
LoadModule wsgi_module modules/mod_wsgi.so
|
|
|
|
and reload the Apache daemon with:
|
|
|
|
$ /etc/init.d/apache reload
|
|
|
|
==========================================================================
|
|
_EOF
|
|
;;
|
|
esac
|