停用nginx

时间:2018-07-22 17:36:51

标签: ubuntu nginx gitlab

我在Web服务器上安装了GitLab的综合软件包。

我使用nginx['enable'] = false在gitlab.rb中禁用了nginx,因为我想创建可被多个子域访问的多个服务器。

现在的问题是,每当我在浏览器中调用GitLab时,都会收到403禁止错误。

由于这是一个权限错误,我希望这里使用错误的用户,但是我还在gitlab.rb文件中添加了web_server['external_users'] = ['www-data']并仔细检查了Nginx的配置文件–该用户称为'www-data像往常一样。

看看我的完整配置文件:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

这是我的服务器配置:

server {
        server_name gitlab.example.com;

        root /var/opt/gitlab;
        index index.html index.htm;

        location / {
                try_files $uri $uri/ =404;
        }
}

我在这里想念什么?

1 个答案:

答案 0 :(得分:0)

注意:Using an existing Passenger/Nginx installation确实提到您需要禁用内置的Nginx Unicorn:

# Disable the built-in unicorn
unicorn['enable'] = false
  

确保运行sudo gitlab-ctl reconfigure才能使更改生效。

Issue 692还提到:

  

我在乘客支持下编译了nginx。
  我安装了旅客:yum install passenger
  我按照指示将服务器块添加到vhost文件中。
  但是直到我看到如何将乘客正确安装到nginx上,它才起作用:

     

请参阅2.3.3 of this page

     

打开/etc/nginx/nginx.conf并将passenger_root /path-to-locations.ini;放在http部分下

     

真实路径是passenger-config --root

的输出      

重启nginx服务器,它应该可以工作(对我来说)。

警告:

  

在新服务器上进行新的GitLab迁移后,我的rubypassenger_ruby之间的版本不同。
  我不得不更改我的红宝石版本,然后再次安装乘客以更正此问题。