【发布时间】:2016-05-27 02:19:33
【问题描述】:
我正在使用 Django 构建应用程序,最近我需要为多租户数据库实现子域,我使用子域作为租户标识符。
当我在服务器而不是 http://test1.example.com 上部署应用程序时,我在调试器中得到了这个 url http://%5Ctest1.example.com
即使我不请求子域也会发生同样的情况,即我输入 http://example.com,但调试器说请求的 url 是 http://%5Cexample.com
因为我使用子域作为标识符,这迫使我将 %5C(即反斜杠)添加到匹配表中。确实不是问题,但是很丑。
为什么会这样?是nginx故障还是其他原因?
如果重要的话我使用django-tenant-schemas,但我怀疑它会影响请求url,它只是从中获取子域名。
我的nginx配置(我用gunicorn):
upstream example.com {
# 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/webapps/bhc_virtualenv/run/gunicorn.sock fail_timeout=0;
}
upstream test1.example.com {
# 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/webapps/bhc_virtualenv/run/gunicorn.sock fail_timeout=0;
}
upstream test2.example.com {
# 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/webapps/bhc_virtualenv/run/gunicorn.sock fail_timeout=0;
}
server {
listen 80;
server_name example.com test1.example.com test2.example.com;
client_max_body_size 4G;
access_log /home/webapps/bhc_virtualenv/logs/nginx-access.log;
error_log /home/webapps/bhc_virtualenv/logs/nginx-error.log;
location /static/ {
alias /home/webapps/bhc_virtualenv/bhc1/static/;
}
location /media/ {
alias /home/webapps/bhc_virtualenv/bhc1/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://example.com;
break;
}
}
# Error pages
error_page 500 502 503 504 /500.html;
location = /500.html {
root /home/webapps/bhc_virtualenv/bhc1/static/;
}
}
【问题讨论】:
标签: django nginx deployment server subdomain