django apache mod-wsgi hangs on importing a python module from .so file

后端 未结 1 1499
误落风尘
误落风尘 2020-12-03 11:47

I\'m trying to deploy a django application for production on apache mod-wsgi. I have a third party python application called freecad which packages python module in an FreeC

相关标签:
1条回答
  • 2020-12-03 12:37

    Set:

    WSGIApplicationGroup %{GLOBAL}
    

    See the application issues document on mod_wsgi wiki.

    Most likely you have an extension module not designed to work in sub interpreter. The above forces it to run in main interpreter.

    0 讨论(0)
提交回复
热议问题