gpt4 book ai didi

python - 将一个应用程序用于多个 uwsgi 实例

转载 作者:太空宇宙 更新时间:2023-11-03 16:31:49 25 4
gpt4 key购买 nike

我找到了很多例子来解释我们如何使用uwsgi和emperor模式来实现多个应用程序的部署。这对我来说意味着:多个应用程序文件夹,每个应用程序有一个 vassal(ini、socket、application.py)。

我还无法找到只有一个应用程序文件夹具有多个附庸的配置示例。这应该允许我为 Multi-Tenancy 应用程序提供服务(每个客户都有自己的数据库)。我用两个实例对此进行了测试。这“似乎”运作良好。

  1. 这是一个好的做法还是您有类似的设置?
  2. 这是否在 vassal 实例之间提供完全隔离?

这是我的设置。我正在使用 nginx/uwsgi/python 堆栈(我使用 emperor_pg module )。此设置允许 uwsgi 为每个客户 A 和 B 生成一个 vassal。客户使用 url :customerN.mydomain.com/fe1/web

Nginx 配置:

# This virtual host catches all incoming traffic from port 80 (security should be considered if not talking on local
# network)
server {
listen 80;
# We capture here the subdomain. It is used to designate a customer entity.
server_name ~^(?<subdomain>.+)\.mydomain\.fr$;


# We use a pattern for creating sockets name and path.
# This allows to spawn vassals automatically by detecting changes in the vassals pg table (emperor_pg)
# Pattern used is : /tmp/$subdomain$appname.sock


location ~favicon\.ico$ {
root /opt/app-current/web/;
}

location ~^\/(?<app_name>.+)\/web\/ {

root /opt/web-content/$subdomain/;
}

location ~^\/(?<app_name>.+)\/ {

# Routing to socket designated by standard pattern
include uwsgi_params;
uwsgi_pass unix://tmp/$subdomain$app_name.sock;

}

# When calling root of entity's subdomain, we launch the default app by routing traffic to index.socket
location / {
include uwsgi_params;
uwsgi_pass unix://tmp/$subdomain.sock;
}
}

皇帝 Upstart 脚本使用emperor_pg:

# Emperor configuration upstart script in `/etc/init/uwsgi.conf` :
# uWSGI - Manage uWSGI Application Server

description "uWSGI Emperor Mode"

start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

respawn


# We use pg mode. This allows to scan a postgresql database.
# requires sudo apt-get install uwsgi-plugin-emperor-pg

exec /usr/bin/uwsgi --uid www-data --gid www-data --plugin emperor_pg --emperor "pg://host=dbserver.com.com user=saasautomator dbname=saasautomator;SELECT name,config,ts,uid,gid,socket FROM vassals" --logto /var/log/uwsgi.log

以及数据库中 vassalsconf 文件的示例。他们使用相同的应用程序文件夹:

saasautomator=> SELECT * FROM vassals;
idvassals | name | config | ts | uid | gid | socket
-----------+---------------------------------+----------------------------------------------------------------+---------------------+-------+-------+---------------------------------------
3 | customerAfe1.ini | [uwsgi] +| 2004-10-19 10:23:54 | uwsgi | uwsgi | /tmp/customerAfe1.sock
| | master = true +| | | |
| | vaccum = true +| | | |
| | chdir = /opt/app/ +| | | |
| | plugins = python +| | | |
| | wsgi-file = /opt/app/fe1/application.py +| | | |
| | processes = 4 +| | | |
| | threads = 2 +| | | |
| | stats = 127.0.0.1:9191 | | | |
4 | customerBfe1.ini | [uwsgi] +| 2004-10-19 10:23:55 | uwsgi | uwsgi | /tmp/customerBfe1.sock
| | master = true +| | | |
| | vaccum = true +| | | |
| | chdir = /opt/app/ +| | | |
| | plugins = python +| | | |
| | wsgi-file = /opt/app/fe1/application.py +| | | |
| | processes = 4 +| | | |
| | threads = 2 +| | | |
| | stats = 127.0.0.1:9192 | | | |
(2 rows)

谢谢!

最佳答案

“这是一个好的做法还是您有类似的设置?”

我确实有类似的设置。我不会回答这是否是好的做法,因为它是基于意见的,但这与为每个客户复制代码库之间存在细微差别。主要区别是:如果有人闯入一个应用程序并且他能够修改其代码,这将影响所有应用程序...但是,如果应用程序的配置没有差异,则允许以这种方式进行闯入,但不允许其他 - 没关系。如果有人闯入其中,他可以将其复制到其他人身上......

此外,使用共享代码库可以更轻松地修复黑客应用程序后所做的更改。

我看不出任何其他重要的区别...

“这是否在 vassals 实例之间提供完全隔离?”

如前所述,并不完整,但其他任何内容都可以隔离。这就像系统中的应用程序之间共享一个库一样,这种情况一直在发生。通过正确的配置,您还可以分离数据库和其他资源。

如果正确应用文件系统权限,您可以限制应用程序本身更改代码的能力,因此它将限制某些黑客更改代码的能力。

关于python - 将一个应用程序用于多个 uwsgi 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37538633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com