简体   繁体   English

在一台VPS服务器中托管2个Django项目

[英]Hosting 2 django project inside one VPS server

I am trying to run 2 django project in one single VPS server in 2 different domain. 我试图在2个不同域中的一台VPS服务器中运行2个django项目。 I am using gunicorn as my project server. 我正在使用gunicorn作为我的项目服务器。 I have created 2 virtual env, 2 supervisor and 2 separate file in sites-available and enable-folder. 我在可用站点和启用文件夹中创建了2个虚拟环境,2个主管和2个单独的文件。 My project is running well but the problem is in one time only one project is running in both the domain. 我的项目运行良好,但问题是一次在两个域中都只有一个项目在运行。 Though in my nginx sites-avaible files are given different domain as server_name still one django project is running both of the domain Can any oone help. 尽管在我的Nginx站点中,为可用文件指定了不同的域,因为server_name仍然有一个django项目正在同时运行两个域。

/etc/nginx/sites-avaiable/VaidText / etc / nginx / sites-avaiable / VaidText

upstream sample_project_server {
  # fail_timeout=0 means we always retry an upstream even if it failed
  # to return a good HTTP response (in case the Unicorn master nukes a
  # single worker for timing out).
  server unix:/home/example/test.example.com/TestEnv/run/gunicorn.sock fail_timeout=0;
}
server {
listen   80;
server_name test.example.com;

client_max_body_size 4G;
access_log /home/example/test.example.com/logs/nginx-access.log;
error_log /home/example/test.example.com/logs/nginx-error.log;

location /static/ {
    alias   /home/ubuntu/static/;
}

location /media/ {
    alias   /home/ubuntu/media/;
}

location / {

    # an HTTP header important enough to have its own Wikipedia entry:
    #   http://en.wikipedia.org/wiki/X-Forwarded-For
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;


    # enable this if and only if you use HTTPS, this helps Rack
    # set the proper protocol for doing redirects:
    # proxy_set_header X-Forwarded-Proto https;

    # pass the Host: header from the client right along so redirects
    # can be set properly within the Rack application
    proxy_set_header Host $http_host;

    # we don't want nginx trying to do something clever with
    # redirects, we set the Host: header above already.
    proxy_redirect off;

    # set "proxy_buffering off" *only* for Rainbows! when doing
    # Comet/long-poll stuff.  It's also safe to set if you're
    # using only serving fast clients with Unicorn + nginx.
    # Otherwise you _want_ nginx to buffer responses to slow
    # clients, really.
    # proxy_buffering off;

    # Try to serve static files from nginx, no point in making an
    # *application* server like Unicorn/Rainbows! serve static files.
    if (!-f $request_filename) {
        proxy_pass http://sample_project_server;
        break;
    }
}

# Error pages
error_page 500 502 503 504 /500.html;
location = /500.html {
    root /home/ubuntu/static/;
}

} }

/etc/nginx/sites-avaiable/SheikhText / etc / nginx / sites-avaiable / SheikhText

  upstream sample_project_server {
  # fail_timeout=0 means we always retry an upstream even if it failed
  # to return a good HTTP response (in case the Unicorn master nukes a
  # single worker for timing out).
  server 

unix:/home/example/sheikhnoman.example.com/SheikhEnv/run/gunicorn.sock fail_timeout=0;
}

server {

listen   80;
server_name sheikhnoman.example.com;

client_max_body_size 4G;
access_log /home/example/sheikhnoman.example.com/logs/nginx-access.log;
error_log /home/example/sheikhnoman.example.com/logs/nginx-error.log;

location /static/ {
    alias   /home/ubuntu/sheikhnoman/static/;
}

location /media/ {
    alias   /home/ubuntu/sheikhnoman/media/;
}

location / {

    # an HTTP header important enough to have its own Wikipedia entry:
    #   http://en.wikipedia.org/wiki/X-Forwarded-For
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;


    # enable this if and only if you use HTTPS, this helps Rack
    # set the proper protocol for doing redirects:
    # proxy_set_header X-Forwarded-Proto https;

    # pass the Host: header from the client right along so redirects
    # can be set properly within the Rack application
    proxy_set_header Host $http_host;

    # we don't want nginx trying to do something clever with
    # redirects, we set the Host: header above already.
    proxy_redirect off;

    # set "proxy_buffering off" *only* for Rainbows! when doing
    # Comet/long-poll stuff.  It's also safe to set if you're
    # using only serving fast clients with Unicorn + nginx.
    # Otherwise you _want_ nginx to buffer responses to slow
    # clients, really.
    # proxy_buffering off;

    # Try to serve static files from nginx, no point in making an
    # *application* server like Unicorn/Rainbows! serve static files.
    if (!-f $request_filename) {
        proxy_pass http://sample_project_server;
        break;
    }
}

# Error pages
error_page 500 502 503 504 /500.html;
location = /500.html {
    root /home/ubuntu/sheikhnoman/static/;
}
}

Your two ngnix config files contains the same "sample_project_server" upstream name . 您的两个ngnix配置文件包含相同的“ sample_project_server” upstream name Try to set a different upsteam name for each of your files. 尝试为每个文件设置一个不同的upsteam名称。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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