简体   繁体   中英

How to use uwsgi whitelist command

how to setting whitelist in my uwsgi.ini to let it working

my ini setting:

[uwsgi]

http = :80
chdir = /usr/local/myproject
wsgi-file = myproject/wsgi.py
master = true
processes = 2
threads = 4
chmod-socket = 664
vacuum = true
plugins = http,python3
stats = 127.0.0.1:5566
static-map = /static=/usr/localmyproject/static

whitelist = 127.0.0.1

I dont know what uwsgi doc means

https://uwsgi-docs.readthedocs.io/en/latest/Options.html?highlight=whitelist#whitelist

You clearly need to add the list to iptables or ufw which will list exactly which addresses are allowed to connect. uwsgi.ini is not the right place to add white list.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM