在Nginx上部署Bottle应用程序

时间:2012-12-08 22:02:45

标签: python ubuntu nginx bottle

我有一个Ubuntu 12.04服务器设置,目前在Passenger / Nginx安装上运行Ruby on Rails应用程序。我决定使用一些Python并使用Bottle编写一个小应用程序。我想将此应用程序部署到我的服务器。 我按照this guide设置我的服务器来运行Python应用程序。当我运行sudo service uwsgi restart时,收到以下错误消息:

Restarting app server(s) uwsgi                                     
[uWSGI] getting INI configuration from  
/usr/share/uwsgi/conf/default.ini [uWSGI] parsing config file /etc/uwsgi/apps-enabled/example.net.xml  
open("./python_plugin.so"): No such file or directory [core/utils.cline 4700]
!!! UNABLE to load uWSGI plugin: ./python_plugin.so: cannot  open shared object file: No such file or directory !!!   
Sat Dec  8 18:29:14 2012 - [WARNING] option "app" is deprecated: use the more advanced "mount" option

我真的不太了解Python,我已经通过easy_install安装了我需要的插件

这是:

  • pymongo
  • beautifulsoup

我的问题是:如何将这个简单的应用程序部署到我的服务器? 谢谢

1 个答案:

答案 0 :(得分:2)

我发现Passenger将运行WSGI应用程序。我按照这篇文章http://kbeezie.com/using-python-nginx-passenger/上的说明进行操作,并且没有遇到任何问题。

最后它实际上很容易。

以下是我的适配器以防其他人遇到麻烦:

https://github.com/nick-desteffen/astronomy-pics/blob/master/passenger_wsgi.py