stage | group | info |
---|---|---|
Systems |
Distribution |
To determine the technical writer assigned to the Stage/Group associated with this page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments |
DETAILS: Tier: Free, Premium, Ultimate Offering: Self-managed
This page provides configuration information for administrators and DevOps engineers configuring NGINX for GitLab installations. It includes essential instructions for optimizing performance and security specific to bundled NGINX (Linux package), Helm charts, or custom setups.
To configure NGINX settings for different services, edit the gitlab.rb
file.
WARNING: Incorrect or incompatible configuration might cause the service to become unavailable.
Use nginx['<setting>']
keys to configure settings for the GitLab Rails application.
GitLab provides similar keys for other services like
pages_nginx
, mattermost_nginx
, and registry_nginx
.
Configurations for nginx
are also available for these <service_nginx>
settings, and
share the same default values as GitLab NGINX.
To operate NGINX for isolated services like Mattermost, use gitlab_rails['enable'] = false
instead of nginx['enable'] = false
.
For more information, see Running GitLab Mattermost on its own server.
When you modify the gitlab.rb
file, configure NGINX settings for each
service separately.
Settings specified using nginx['foo']
are not replicated to
service-specific NGINX configurations (such as registry_nginx['foo']
or
mattermost_nginx['foo']
).
For example, to configure HTTP to HTTPS
redirection for GitLab, Mattermost and Registry, add the following settings
to gitlab.rb
:
nginx['redirect_http_to_https'] = true
registry_nginx['redirect_http_to_https'] = true
mattermost_nginx['redirect_http_to_https'] = true
By default, Linux package installations do not use HTTPS. To enable HTTPS for
gitlab.example.com
:
If you use a proxy, load balancer, or other external device to terminate SSL for the GitLab host name, see External, proxy, and load balancer SSL termination.
By default, when you specify external_url
, a Linux package installation sets NGINX proxy headers
that are suitable for most environments.
For example, if you specify the https
schema in the external_url
, a Linux package installation sets:
"X-Forwarded-Proto" => "https",
"X-Forwarded-Ssl" => "on"
If your GitLab instance is in a more complex setup, such as behind a reverse proxy, you might need to adjust the proxy headers to avoid errors like:
The change you wanted was rejected
Can't verify CSRF token authenticity Completed 422 Unprocessable
To override the default headers:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['proxy_set_headers'] = { "X-Forwarded-Proto" => "http", "CUSTOM_HEADER" => "VALUE" }
-
Save the file and reconfigure GitLab for the changes to take effect.
You can specify any header supported by NGINX.
By default, NGINX and GitLab log the IP address of the connected client.
If GitLab is behind a reverse proxy, you might not want the IP address of the proxy to show as the client address.
To configure NGINX to use a different address, add your reverse
proxy to the real_ip_trusted_addresses
list:
# Each address is added to the NGINX config as 'set_real_ip_from <address>;'
nginx['real_ip_trusted_addresses'] = [ '192.168.1.0/24', '192.168.2.1', '2001:0db8::/32' ]
# Other real_ip config options
nginx['real_ip_header'] = 'X-Forwarded-For'
nginx['real_ip_recursive'] = 'on'
For a description of these options, see the
NGINX realip
module documentation.
By default, Linux package installations use the IP addresses in real_ip_trusted_addresses
as GitLab trusted proxies.
The trusted proxy configuration prevents users from being listed as signed in from those IP addresses.
Save the file and reconfigure GitLab for the changes to take effect.
To use a proxy like HAProxy in front of GitLab with the PROXY protocol:
-
Edit
/etc/gitlab/gitlab.rb
:# Enable termination of ProxyProtocol by NGINX nginx['proxy_protocol'] = true # Configure trusted upstream proxies. Required if `proxy_protocol` is enabled. nginx['real_ip_trusted_addresses'] = [ "127.0.0.0/8", "IP_OF_THE_PROXY/32"]
-
Save the file and reconfigure GitLab for the changes to take effect.
After you enable this setting, NGINX only accepts PROXY protocol traffic on these listeners. Adjust any other environments you might have, such as monitoring checks.
By default, the Linux package installs GitLab with bundled NGINX.
Linux package installations allow web server access through the gitlab-www
user, which resides
in the group with the same name. To allow an external web server access to
GitLab, add the external web server user to the gitlab-www
group.
To use another web server like Apache or an existing NGINX installation:
-
Disable bundled NGINX:
In
/etc/gitlab/gitlab.rb
set:nginx['enable'] = false
-
Set the username of the non-bundled web server user:
Linux package installations have no default setting for the external web server user. You must specify it in the configuration. For example:
- Debian/Ubuntu: The default user is
www-data
for both Apache and NGINX. - RHEL/CentOS: The NGINX user is
nginx
.
Install Apache or NGINX before continuing, so the web server user is created. Otherwise, the Linux package installation fails during reconfiguration.
If the web server user is
www-data
, in/etc/gitlab/gitlab.rb
set:web_server['external_users'] = ['www-data']
This setting is an array, so you can specify multiple users to add to the
gitlab-www
group.Run
sudo gitlab-ctl reconfigure
for the change to take effect.If you use SELinux and your web server runs under a restricted SELinux profile, you might need to loosen the restrictions on your web server.
Ensure the web server user has the correct permissions on all directories used by the external web server. Otherwise, you might receive
failed (XX: Permission denied) while reading upstream
errors. - Debian/Ubuntu: The default user is
-
Add the non-bundled web server to the list of trusted proxies:
Linux package installations usually default the list of trusted proxies to the configuration in the
real_ip
module for the bundled NGINX.For non-bundled web servers, configure the list directly. Include the IP address of your web server if it is not on the same machine as GitLab. Otherwise, users appear to be signed in from your web server's IP address.
gitlab_rails['trusted_proxies'] = [ '192.168.1.0/24', '192.168.2.1', '2001:0db8::/32' ]
-
Optional. If you use Apache, set GitLab Workhorse settings:
Apache cannot connect to a UNIX socket and must connect to a TCP port. To allow GitLab Workhorse to listen on TCP (by default port 8181), edit
/etc/gitlab/gitlab.rb
:gitlab_workhorse['listen_network'] = "tcp" gitlab_workhorse['listen_addr'] = "127.0.0.1:8181"
Run
sudo gitlab-ctl reconfigure
for the change to take effect. -
Download the correct web server configuration:
Go to the GitLab repository and download the required configuration. Select the correct configuration file for serving GitLab with or without SSL. You might need to change:
- The value of
YOUR_SERVER_FQDN
to your FQDN. - If you use SSL, the location of your SSL keys.
- The location of your log files.
- The value of
GitLab provides various configuration options to customize NGINX behavior for your specific needs. Use these reference items to fine-tune your NGINX setup and optimize GitLab performance and security.
By default, NGINX accepts incoming connections on all local IPv4 addresses.
To change the list of addresses:
-
Edit
/etc/gitlab/gitlab.rb
:# Listen on all IPv4 and IPv6 addresses nginx['listen_addresses'] = ["0.0.0.0", "[::]"] registry_nginx['listen_addresses'] = ['*', '[::]'] mattermost_nginx['listen_addresses'] = ['*', '[::]'] pages_nginx['listen_addresses'] = ['*', '[::]']
-
Save the file and reconfigure GitLab for the changes to take effect.
By default, NGINX listens on the port specified in external_url
or
uses the standard port (80 for HTTP, 443 for HTTPS). If you run
GitLab behind a reverse proxy, you might want to override the listen port.
To change the listen port:
-
Edit
/etc/gitlab/gitlab.rb
. For example, to use port 8081:nginx['listen_port'] = 8081
-
Save the file and reconfigure GitLab for the changes to take effect.
By default, NGINX logs at the error
verbosity level.
To change the log level:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['error_log_level'] = "debug"
-
Save the file and reconfigure GitLab for the changes to take effect.
For valid log level values, see the NGINX documentation.
By default, GitLab sets the Referrer-Policy
header to strict-origin-when-cross-origin
on all responses.
This setting makes the client:
- Send the full URL as referrer for same-origin requests.
- Send only the origin for cross-origin requests.
To change this header:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['referrer_policy'] = 'same-origin'
To disable this header and use the client's default setting:
nginx['referrer_policy'] = false
-
Save the file and reconfigure GitLab for the changes to take effect.
WARNING:
Setting this to origin
or no-referrer
breaks GitLab features that require the full referrer URL.
For more information, see the Referrer Policy specification.
By default, GitLab enables Gzip compression for text data over 10240 bytes. To disable Gzip compression:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['gzip_enabled'] = false
-
Save the file and reconfigure GitLab for the changes to take effect.
NOTE:
The gzip
setting applies only to the main GitLab application, not to other services.
To disable request buffering for specific locations:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['request_buffering_off_path_regex'] = "/api/v\\d/jobs/\\d+/artifacts$|/import/gitlab_project$|\\.git/git-receive-pack$|\\.git/ssh-receive-pack$|\\.git/ssh-upload-pack$|\\.git/gitlab-lfs/objects|\\.git/info/lfs/objects/batch$"
-
Save the file and reconfigure GitLab for the changes to take effect.
-
Reload NGINX configuration gracefully:
sudo gitlab-ctl hup nginx
For more information about the hup
command, see the
NGINX documentation.
To configure a custom robots.txt
file for your instance:
-
Create your custom
robots.txt
file and note its path. -
Edit
/etc/gitlab/gitlab.rb
:nginx['custom_gitlab_server_config'] = "\nlocation =/robots.txt { alias /path/to/custom/robots.txt; }\n"
Replace
/path/to/custom/robots.txt
with the actual path to your customrobots.txt
file. -
Save the file and reconfigure GitLab for the changes to take effect.
This configuration adds a custom NGINX setting
to serve your custom robots.txt
file.
To add custom settings to the NGINX server
block for GitLab:
-
Edit
/etc/gitlab/gitlab.rb
:# Example: block raw file downloads from a specific repository nginx['custom_gitlab_server_config'] = "location ^~ /foo-namespace/bar-project/raw/ {\n deny all;\n}\n"
-
Save the file and reconfigure GitLab for the changes to take effect.
This inserts the defined string at the end of the server
block in
/var/opt/gitlab/nginx/conf/gitlab-http.conf
.
WARNING:
Custom settings might conflict with settings defined elsewhere in your gitlab.rb
file.
-
If you're adding a new location, you might need to include:
proxy_cache off; proxy_http_version 1.1; proxy_pass http://gitlab-workhorse;
Without these, any sub-location might return a 404 error.
-
You cannot add the root
/
location or the/assets
location, as they already exist ingitlab-http.conf
.
To add custom settings to the NGINX configuration:
-
Edit
/etc/gitlab/gitlab.rb
:# Example: include a directory to scan for additional config files nginx['custom_nginx_config'] = "include /etc/gitlab/nginx/sites-enabled/*.conf;"
-
Save the file and reconfigure GitLab for the changes to take effect.
This inserts the defined string at the end of the http
block in
/var/opt/gitlab/nginx/conf/nginx.conf
.
For example, to create and enable custom server blocks:
-
Create custom server blocks in the
/etc/gitlab/nginx/sites-available
directory. -
Create the
/etc/gitlab/nginx/sites-enabled
directory if it doesn't exist. -
To enable a custom server block, create a symlink:
sudo ln -s /etc/gitlab/nginx/sites-available/example.conf /etc/gitlab/nginx/sites-enabled/example.conf
-
Reload NGINX configuration:
sudo gitlab-ctl hup nginx
Alternatively, you can restart NGINX:
sudo gitlab-ctl restart nginx
You can add domains for server blocks as an alternative name to the generated Let's Encrypt SSL certificate.
Custom NGINX settings inside the /etc/gitlab/
directory are backed up to /etc/gitlab/config_backup/
during an upgrade and when sudo gitlab-ctl backup-etc
is manually executed.
To modify text on the default GitLab error pages:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['custom_error_pages'] = { '404' => { 'title' => 'Example title', 'header' => 'Example header', 'message' => 'Example message' } }
This example modifies the default 404 error page. You can use this format for any valid HTTP error code, such as 404 or 502.
-
Save the file and reconfigure GitLab for the changes to take effect.
The result for the 404 error page would look like this:
You can host GitLab with an existing Passenger and NGINX installation and still use Linux packages for updates and installation.
If you disable NGINX, you can't access other services included in a Linux package installation, such as
Mattermost, unless you manually add them to nginx.conf
.
To set up GitLab with an existing Passenger and NGINX installation:
-
Edit
/etc/gitlab/gitlab.rb
:# Define the external url external_url 'http://git.example.com' # Disable the built-in NGINX nginx['enable'] = false # Disable the built-in Puma puma['enable'] = false # Set the internal API URL gitlab_rails['internal_api_url'] = 'http://git.example.com' # Define the web server process user (ubuntu/nginx) web_server['external_users'] = ['www-data']
-
Save the file and reconfigure GitLab for the changes to take effect.
In your custom Passenger/NGINX installation:
-
Create a new site configuration file with the following content:
upstream gitlab-workhorse { server unix://var/opt/gitlab/gitlab-workhorse/sockets/socket fail_timeout=0; } server { listen *:80; server_name git.example.com; server_tokens off; root /opt/gitlab/embedded/service/gitlab-rails/public; client_max_body_size 250m; access_log /var/log/gitlab/nginx/gitlab_access.log; error_log /var/log/gitlab/nginx/gitlab_error.log; # Ensure Passenger uses the bundled Ruby version passenger_ruby /opt/gitlab/embedded/bin/ruby; # Correct the $PATH variable to included packaged executables passenger_env_var PATH "/opt/gitlab/bin:/opt/gitlab/embedded/bin:/usr/local/bin:/usr/bin:/bin"; # Make sure Passenger runs as the correct user and group to # prevent permission issues passenger_user git; passenger_group git; # Enable Passenger & keep at least one instance running at all times passenger_enabled on; passenger_min_instances 1; location ~ ^/[\w\.-]+/[\w\.-]+/(info/refs|git-upload-pack|git-receive-pack)$ { # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } location ~ ^/[\w\.-]+/[\w\.-]+/repository/archive { # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } location ~ ^/api/v3/projects/.*/repository/archive { # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } # Build artifacts should be submitted to this location location ~ ^/[\w\.-]+/[\w\.-]+/builds/download { client_max_body_size 0; # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } # Build artifacts should be submitted to this location location ~ /ci/api/v1/builds/[0-9]+/artifacts { client_max_body_size 0; # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } # Build artifacts should be submitted to this location location ~ /api/v4/jobs/[0-9]+/artifacts { client_max_body_size 0; # 'Error' 418 is a hack to re-use the @gitlab-workhorse block error_page 418 = @gitlab-workhorse; return 418; } # For protocol upgrades from HTTP/1.0 to HTTP/1.1 we need to provide Host header if its missing if ($http_host = "") { # use one of values defined in server_name set $http_host_with_default "git.example.com"; } if ($http_host != "") { set $http_host_with_default $http_host; } location @gitlab-workhorse { ## https://github.com/gitlabhq/gitlabhq/issues/694 ## Some requests take more than 30 seconds. proxy_read_timeout 3600; proxy_connect_timeout 300; proxy_redirect off; # Do not buffer Git HTTP responses proxy_buffering off; proxy_set_header Host $http_host_with_default; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_pass http://gitlab-workhorse; ## The following settings only work with NGINX 1.7.11 or newer # ## Pass chunked request bodies to gitlab-workhorse as-is # proxy_request_buffering off; # proxy_http_version 1.1; } ## Enable gzip compression as per rails guide: ## http://guides.rubyonrails.org/asset_pipeline.html#gzip-compression ## WARNING: If you are using relative urls remove the block below ## See config/application.rb under "Relative url support" for the list of ## other files that need to be changed for relative url support location ~ ^/(assets)/ { root /opt/gitlab/embedded/service/gitlab-rails/public; gzip_static on; # to serve pre-gzipped version expires max; add_header Cache-Control public; } error_page 502 /502.html; }
Replace
git.example.com
with your server URL.
If you receive a 403 Forbidden error, ensure Passenger is enabled in /etc/nginx/nginx.conf
:
-
Uncomment this line:
# include /etc/nginx/passenger.conf;
-
Reload the NGINX configuration:
sudo service nginx reload
By default, GitLab configures an NGINX health-check endpoint at 127.0.0.1:8060/nginx_status
to
monitor your NGINX server status.
The endpoint displays the following information:
Active connections: 1
server accepts handled requests
18 18 36
Reading: 0 Writing: 1 Waiting: 0
- Active connections: Open connections in total.
- Three figures showing:
- All accepted connections.
- All handled connections.
- Total number of handled requests.
- Reading: NGINX reads request headers.
- Writing: NGINX reads request bodies, processes requests, or writes responses to a client.
- Waiting: Keep-alive connections. This number depends on the
keepalive_timeout
directive.
To configure NGINX status options:
-
Edit
/etc/gitlab/gitlab.rb
:nginx['status'] = { "listen_addresses" => ["127.0.0.1"], "fqdn" => "dev.example.com", "port" => 9999, "options" => { "access_log" => "on", # Disable logs for stats "allow" => "127.0.0.1", # Only allow access from localhost "deny" => "all" # Deny access to anyone else } }
To disable the NGINX status endpoint:
nginx['status'] = { 'enable' => false }
-
Save the file and reconfigure GitLab for the changes to take effect.
GitLab includes the NGINX VTS (Virtual host Traffic Status) module to provide additional performance metrics, including latency percentiles.
Before enabling the VTS module with histogram buckets, consider these impacts:
- Memory usage increases to store metrics data. The impact scales with the number of virtual hosts and traffic volume.
- Calculating histogram metrics on each request consumes a small amount of CPU.
- If you are collecting these metrics in Prometheus, you need additional storage.
For high-traffic installations, monitor system resources after enabling these metrics to ensure performance remains within acceptable limits.
To enable advanced latency metrics:
-
Create a custom NGINX configuration file:
sudo mkdir -p /etc/gitlab/nginx/conf.d/ sudo vim /etc/gitlab/nginx/conf.d/vts-custom.conf
-
Add these settings to enable histogram buckets and filtering:
vhost_traffic_status_histogram_buckets 0.005 0.01 0.05 0.1 0.25 0.5 1 2.5 5 10; vhost_traffic_status_filter_by_host on; vhost_traffic_status_filter on; vhost_traffic_status_filter_by_set_key $server_name server::*;
-
To configure GitLab to include your custom settings, add the following to
/etc/gitlab/gitlab.rb
:nginx['custom_nginx_config'] = "include /etc/gitlab/nginx/conf.d/vts-custom.conf;"
-
Reconfigure and restart NGINX:
sudo gitlab-ctl reconfigure sudo gitlab-ctl restart nginx
After enabling these settings, you can use Prometheus queries to monitor various latency metrics:
# Average response time
rate(nginx_vts_server_request_seconds_total[5m]) / rate(nginx_vts_server_requests_total{code=~"2xx|3xx|4xx|5xx"}[5m])
# P90 latency
histogram_quantile(0.90, rate(nginx_vts_server_request_duration_seconds_bucket[5m]))
# P99 latency
histogram_quantile(0.99, rate(nginx_vts_server_request_duration_seconds_bucket[5m]))
# Average upstream response time
rate(nginx_vts_upstream_response_seconds_total[5m]) / rate(nginx_vts_upstream_requests_total{code=~"2xx|3xx|4xx|5xx"}[5m])
# P90 upstream latency
histogram_quantile(0.90, rate(nginx_vts_upstream_response_duration_seconds_bucket[5m]))
# P99 upstream latency
histogram_quantile(0.99, rate(nginx_vts_upstream_response_duration_seconds_bucket[5m]))
For GitLab Workhorse-specific metrics, you can use:
# 90th percentile upstream latency for GitLab Workhorse
histogram_quantile(0.90, rate(nginx_vts_upstream_response_duration_seconds_bucket{upstream="gitlab-workhorse"}[5m]))
# Average upstream response time for GitLab Workhorse
rate(nginx_vts_upstream_response_seconds_total{upstream="gitlab-workhorse"}[5m]) /
rate(nginx_vts_upstream_requests_total{upstream="gitlab-workhorse",code=~"2xx|3xx|4xx|5xx"}[5m])
To ensure user uploads are accessible, add your NGINX user (usually www-data
) to the gitlab-www
group:
sudo usermod -aG gitlab-www www-data
The configuration files are similar to the bundled GitLab NGINX configuration, with these differences:
- Passenger configuration is used instead of Puma.
- HTTPS is not enabled by default, but you can enable it.
After making changes to the NGINX configuration:
-
For Debian-based systems, restart NGINX:
sudo service nginx restart
-
For other systems, refer to your operating system's documentation for the correct command to restart NGINX.