Can I run 3 uwsgi service using different port

好久不见. 提交于 2021-02-07 09:40:51

问题


I have 3 python django application on same server. And I want to run each service using different port.

ex) 80 for end user 8001 for service provider 8002 for service operator

But I have no idea how can I do this.

Now, one uwsgi service is running using systemctl.

This is my 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

And uwsgi.ini is the following.

[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

And my nginx setting is the following.

# 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;
}

}

I want to know how can I make settings in order to launch some uwsgi service and how to setting nginx config file.

Would you give me an advice?

Thanks in advance.


回答1:


uwsgi_p1.ini for 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 for 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 for 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 for 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;
}
}

and so on...



来源:https://stackoverflow.com/questions/45853945/can-i-run-3-uwsgi-service-using-different-port

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!