English 中文(简体)
uWSGI: 如何将多个应用程序配置包含在一个山地里?
原标题:uWSGI: how to include multiple app configuration in one yaml?
  • 时间:2012-05-27 14:51:19
  •  标签:
  • uwsgi

我在XML中找到了这个示例配置,在 uWSGI s doc < a href=" http://projects.unbit.it/uwsgi/wiki/Example#a3Web2PyinstancesoneXML configation" rel=“nofollow” > http://projects.unbit.it/uwsgi/wiki/Example#a3We2PyinstancesoneXML configation

同一配置能否被翻译为 YAML ?

问题回答

同一规则适用于:

app1:
  socket: xxx
  ...

app2:
  socket: yyy
  ...

app3:
  socket: zzz
  ...

时当时

uwsgi -- yaml your file. yml: ap1

uwsgi -- yaml your file. yml: ap2

uwsgi -- yaml your file. yml: ap3





相关问题
Cherokee + uWSGI + Pylons

I have successfully deployed a Django app with uWSGI + Cherokee. However, I want to experiment with Pylons before I go decide on Django. So far I have followed the instructions/recommendations here: ...

Django: ImportError: No module named ?z?

Hi I am trying to deploy a django app with uwsgi. I keep getting Import Errors that look like this: ImportError: No module named ?z? -or- ImportError: No module named ?j? -or- ImportError: No ...

uwsgi + django via Nginx - uwsgi settings/spawn?

I am leaning towards uwsgi+nginx for my Django app, can anyone share the best method for starting up my uwsgi processes? Does anyone have experience tuning uwsgi?

wsgi-served page does not refresh

I recently got my first app to work in uWSGI with Cherokee. I used the following code taken from the uWSGI docs: def application(environ, start_response): start_response( 200 OK , [( Content-Type , ...

uWSGI with Cherokee: first steps

Has anyone tried using uWSGI with Cherokee? Can you share your experiences and what documents you relied upon the most? I am trying to get started from the documentation on both (uWSGI and Cherokee) ...

Cant compile uwsgi under centos (fc10) with python2.6

it`s normally build with python 2.5 BUT i need 2.6! 2.6 normally installed in /opt/python26 and successfully run as python2.6 in console. but python2.6 uwsgiconfig.py --build give me *** uWSGI ...

Deploying Pylons with uWSGI

We re trying to move our intranet to Pylons. My boss is trying to set up Pylons to use uWSGI behind Apache so he can set up multiple, independent applications. However, he s having a difficult time ...

热门标签