我有一个django项目,其中包含2个应用程序,即admin
和api
。
管理员应用程序依赖于api
应用程序来访问模型。
我有2个子域,例如:admin.xxxx.com
和api.xxxx.com
。
该项目当前已使用gunicorn + nginx部署在AWS EC2中。
更新
所有管理员请求都传递给some.ip.address.0:8000/admin/
,所有api请求都传递给some.ip.address.0:8000/
有什么办法可以将我的 some.ip.address.0:8000 / admin / 指向 admin.xxxx.com 和 some.ip .address.0:8000 / 到 api.xxxx.com ?
更新2:
myproject_nginx.conf文件:
upstream myproject_backend_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/ubuntu/myproject_backend/myproject_backend.sock fail_timeout=0;
}
server{
listen 80;
listen [::]:80;
server_name admin.mydomain.in;
location / {
proxy_pass http://13.***.***.***:8000/admin/;
}
location /static/ {
alias /home/ubuntu/myproject_backend/static/;
}
location /media/ {
alias /home/ubuntu/myproject_backend/media/;
}
}
server {
listen 80;
server_name 13.***.***.***:8000 api.mydomain.in www.api.mydomain.in;
client_max_body_size 4G;
location /static/ {
alias /home/ubuntu/myproject_backend/static/;
}
location /media/ {
alias /home/ubuntu/myproject_backend/media/;
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect 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://myproject_backend_server;
break;
}
}
}
myproject urls.py文件:
from django.urls import path, re_path, include
from django.conf.urls.static import static
from django.conf import settings
from django.views.static import serve
urlpatterns = [
re_path(r'^', include('api_app.urls')),
...
path('admin/', include('admin_app.urls')),
...
re_path(r'^static/(?P<path>.*)$', serve,
{'document_root': settings.STATIC_ROOT}),
re_path(r'^media/(?P<path>.*)$', serve,
{'document_root': settings.MEDIA_ROOT}),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
它打开了我的管理员登录页面,但是我尝试登录时显示:/ admin / admin在此服务器上找不到。
请提示出什么问题了
答案 0 :(得分:1)
是的,为此,您必须将两个域指向托管django应用程序的EC2实例(如果使用的是ELB,则指向ELB)并配置Nginx,以便它将请求从一个域重定向到{{1} }以及从其他路径到admin
的路径。
答案 1 :(得分:1)
据我了解,当用户在浏览器中键入此地址http://admin.mydomain.in
且您的django应用处理此管理页面时,您想显示一个管理页面,因此您正在使用nginx代理到{{1} },从中可以访问您的管理页面。
但是这里的问题是您的应用程序不知道该怎么做。因此,它需要一个专门用于此目的的中间人(在您的情况下为Gunicorn)。而且,nginx不能直接与您的django应用程序通信,仅仅是因为它并不旨在提供动态内容。
因此,要解决此问题,您需要配置gunicorn,以使其监听地址http://13.***.***.***:8000/admin/
到nginx将请求转发到的地址。然后在此地址上运行gunicorn,并将参数作为您的应用名称。您可以阅读帖子serving a request from gunicorn的第二个答案,以配置您的gunicorn文件。