我可以 运行 3 uwsgi 服务使用不同的端口吗

Can I run 3 uwsgi service using different port

我在同一台服务器上有 3 个 python django 应用程序。我想 运行 每个服务使用不同的端口。

例如) 最终用户 80 8001 服务提供商 服务运营商 8002

但我不知道该怎么做。

现在,一项 uwsgi 服务 运行正在使用 systemctl。

这是我的uwsgi.service。

# uwsgi.service
[Unit]
Description=uWSGI
After=syslog.target

[Service]
ExecStartPre=/bin/bash -c 'mkdir -p /var/run/uwsgi; chown root:ubuntu 
/var/run/uwsgi; chmod g+w /var/run/uwsgi;'
ExecStart=/bin/bash -c 'source /var/www/html/remosys/bin/activate; uwsgi --ini /var/www/html/remosys/uwsgi.ini'
#Restart=always
Restart=on-failure
KillSignal=SIGQUIT
Type=notify
StandardError=syslog
NotifyAccess=all

[Install]
WantedBy=multi-user.target

而uwsgi.ini如下

[uwsgi]
uid = ubuntu
gid = ubuntu

# Django-related settings
# the base directory (full path)
chdir = /var/www/html/remosys/remoshin

# Django's wsgi file
module = remoshin.wsgi

# the virtualenv (full path)
home = /var/www/html/remosys


# process-related settings
# master
master = true

# maximum number of worker processes
processes = 2

threads = 1

# the socket (use the full path to be safe
socket = /var/run/uwsgi/master.sock

pidfile = /var/run/uwsgi/master.pid

# ... with appropriate permissions - may be needed
chmod-socket = 666

# clear environment on exit
vacuum = true

thunder-lock = true

max-requests = 6000
max-requests-delta = 300

# log
logto = /var/log/uwsgi/uwsgi.log
deamonize = /var/log/uwsgi/uwsgi-@(exec://date +%Y-%m-%d).log
log-reopen = true

我的 nginx 设置如下。

# the upstream component nginx needs to connect to
upstream django {
    # for a file socket
    server unix:///var/run/uwsgi/master.sock;
}

# configuration of the server
server {
    # the port your site will be served on
    listen      80;
    # the domain name it will serve for
    # substitute your machine's IP address or FQDN
    server_name localhost
    charset     utf-8;

    location /clinic {
        # your Django project's static files - amend as required
        alias /home/ubuntu/public_html/clinic;
    }
    # max upload size
    # Django media
    location /static {
        # your Django project's static files - amend as required
        alias /home/ubuntu/remosys/remoshin/apiv1/static;
    }

    # Finally, send all non-media requests to the Django server.
    location / {
        uwsgi_pass  django;
        # the uwsgi_params file you installed
        include     /var/www/html/remosys/uwsgi_params;
}

}

我想知道如何进行设置以启动一些 uwsgi 服务以及如何设置 nginx 配置文件。

你能给我一个建议吗?

提前致谢。

uwsgi_p1.ini 对于 my_project1

[uwsgi]
chdir = /root/my_workplace/my_project1
module = my_project1.wsgi
virtualenv = /root/my_workplace/virtual/my_project1
processes = 2
socket = 127.0.0.1:10001    # **pay attention to this port**
vacuum = true
master = true

nginx_p1.conf 对于 my_project1

server {
listen      8888;  #  use different server_name or listenport
charset     utf-8;
client_max_body_size 75M;

server_name project1.mydomain.com;  #  use different server_name or listenport

location / {
    uwsgi_pass  127.0.0.1:10001;   #  pay attention to here
    include     uwsgi_params;
}
}

================================

uwsgi_p2.ini 对于 my_project2

[uwsgi]
chdir = /root/my_workplace/my_project2
module = my_project2.wsgi
virtualenv = /root/my_workplace/virtual/project2
processes = 2
socket = 127.0.0.1:10002
vacuum = true
master = true

nginx_p2.conf 对于 my_project2

server {
listen      8889;
charset     utf-8;
client_max_body_size 75M;

server_name project2.mydomain.com;  

location / {
    uwsgi_pass  127.0.0.1:10002;   
    include     uwsgi_params;
}
}

等等...