Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configurationAction 'configtest' failed

后端 未结 3 1045
感动是毒
感动是毒 2020-12-09 07:25

I got the below error while I was configuring CKAN DataPusher.

Invalid command \'WSGIScriptAlias\', perhaps misspelled or defined by a module not in

3条回答
  •  一生所求
    2020-12-09 08:12

    Try to enable wsgi mod in Apache

    sudo a2enmod wsgi
    

    If you come across below error

    ERROR: Module mod-wsgi does not exist!

    You will have to install mod wsgi as below. What you have to do is run the following commands,

    sudo apt-get install libapache2-mod-wsgi
    sudo a2enmod wsgi
    sudo service apache2 restart
    

提交回复
热议问题