如何在gitlab旁边设置django?

如何在gitlab旁边设置django?,django,nginx,ssl,gitlab,Django,Nginx,Ssl,Gitlab,Gitlab安装在服务器上,它挂在git.domain.com子域上,我需要该站点挂在domain.com上,当我尝试进入这个域时,浏览器发誓没有ssl,我尝试过谷歌搜索,我得到了这个配置 # the upstream component nginx needs to connect to upstream django { server unix:///home/web/project/uwsgi_nginx.sock; # for a file socket # server

Gitlab安装在服务器上,它挂在git.domain.com子域上,我需要该站点挂在domain.com上,当我尝试进入这个域时,浏览器发誓没有ssl,我尝试过谷歌搜索,我得到了这个配置

# the upstream component nginx needs to connect to
upstream django {
    server unix:///home/web/project/uwsgi_nginx.sock; # for a file socket
    # server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}

# configuration of the server
server {
    # the port your site will be served on
    listen      8001;

    listen 444 ssl http2 default_server;
    listen [::]:444 ssl http2 default_server;
    server_name domain.com;

    ssl_certificate /etc/gitlab/ssl/domain.com.crt;
    ssl_certificate_key /etc/gitlab/ssl/domain.com.key; 

    # the domain name it will serve for
    server_name domain.com www.domain.com; # substitute your machine's IP address or FQDN
    charset     utf-8;

    # max upload size
    client_max_body_size 75M;   # adjust to taste

    # Django media
    location /media  {
    alias /home/web/project/media;  # your Django project's media files - amend as required
    }

    location /static {
    alias /home/web/project/static; # your Django project's static files - amend as required
    }

    # Finally, send all non-media requests to the Django server.
    location / {
    uwsgi_pass  django;
    include     /home/web/project/deployment/uwsgi_params; # the uwsgi_params file you installed
    }
}
但结果是一样的,浏览器发誓没有ssl。我试图在gitlab设置
/etc/gitlab/gitlab.rb
中禁用letsencrypt
letsencrypt['enable']=false,之后我运行了
sudo gitlab ctl reconfigure
,但gitlab仍然使用ssl

我不明白如何配置nginx使我的网站正常工作