我试图运行多个用Django编写的仪表板以在服务器上运行,但没有启动并运行它。跟随this digital ocean tutorial,并根据this SO answer对其进行了修改。现在一切都已启动并运行,但是当指向我的URL时,它将显示Nginx欢迎页面http://ipaddr/first_dashboard
下面是gunicorn_fdab.socket
文件:
[Unit]
Description=gunicorn socket
[Socket]
ListenStream=/run/gunicorn_fdab.sock
[Install]
WantedBy=sockets.target
下面是gunicorn_fdab.service
文件:
[Unit]
Description=gunicorn daemon for fdab
Requires= gunicorn_fdab.socket
After=network.target
[Service]
User=root
Group=root
WorkingDirectory=/opt/fdab
ExecStart=/opt/anaconda/envs/fdab/bin/gunicorn \
--access-logfile - \
--workers 3 \
--bind unix:/run/gunicorn_fdab.sock \
fdab.wsgi:application
[Install]
WantedBy=multi-user.target
现在这是我的Nginx conf文件:
server {
listen 80;
server_name 111.11.11.111;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /opt/fdab/fdab;
}
location /fdab {
include proxy_params;
rewrite /fdab(.*) $1;
proxy_pass http://unix:/run/gunicorn_fdab.sock;
}
}
我不知道哪里做错了。
如果正在做curl --unix-socket /run/gunicorn_fdab.sock localhost
,它什么也不返回。
(base) root@virtualserver01:~# curl --unix-socket /run/gunicorn_fdab.sock localhost
(base) root@virtualserver01:~#
项目存储在/opt/fdab
。
其他信息:
基本上,我对两个项目的项目结构都是这样的:
/opt/fdab
/fdab
/fdab_dashboard
/opt/pdab
/pdab
/pdab_dashboard
项目的结构是这样的,因为我打算在fbad和fdab2(第二个项目名称)中拥有多个应用程序。
编辑
已更新Nginx的conf文件:
server {
listen 80;
server_name 111.11.11.111;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /opt/fdab/fdab;
}
location /fdab {
include proxy_params;
rewrite /fdab/(.*) /$1 break;
proxy_pass http://unix:/run/gunicorn_fbad.sock;
}
location /pdab/static/ {
alias /opt/pdab/pdab/static/;
}
location /pdab {
include proxy_params;
rewrite /pdab/(.*) /$1 break;
proxy_pass http://unix:/run/gunicorn_pdab.sock;
}
}
现在,我在两个项目中都添加了FORCE_SCRIPT_NAME = '/exampleproject'
。
现在发生的事情是,如果输入http://<ipaddr>/fdab/fdab_dashboard
可以正常工作,但是如果输入http://<ipaddr>/fdab/
或http://<ipaddr>/pdab/
,则会重定向到http://<ipaddr>/fdab_dashboard
并http://<ipaddr>/pdab_dashboard
,这不是必需的,此外,http://<ipaddr>/fdab_dashboard
似乎工作正常。但是网址的fdab
部分丢失了,一旦我登录后进入应用程序,该网址似乎就可以了,也许是因为FORCE_SCRIPT_NAME = '/fdab'
,但是网址http://<ipaddr>/pdab_dashboard
给了我{ {1}}页。
答案 0 :(得分:0)
所以好消息是您发布的Gunicorn和Nginx配置看起来正确。
(1)问题1的默认网页显示:
这几乎总是由默认的nginx配置文件default.conf
引起的。只需删除该文件,您应该会看到您的网站弹出。唯一需要检查的另一件事是测试并重新加载nginx以确保您的配置有效并已加载:
sudo nginx -t
sudo systemctl reload nginx
(2)问题#2卷曲到unix套接字没有返回您期望的结果。 curl命令看起来有些微:请尝试以下操作:
curl -v --no-buffer --unix-socket /run/gunicorn_fdab.sock http://localhost/route/available/in/django
您可以将{@ 1}}尾巴上的甘蓝原木与卷发配对,
答案 1 :(得分:0)
我建议您尝试在nginx配置中不要进行任何URL重写。根据需要对套接字进行proxy_pass,然后调整Django URL配置以匹配要在不同应用程序中使用的URL。