Commit 89d6ee16328a26c33abffcd00d589740d4514ea0

Authored by Sytse Sijbrandij
1 parent 36e832cc

This commit got lost https://github.com/gitlabhq/gitlab-recipes/commit/76ba45246…

…e93e9c764580fe54ccfe38da751afbe
Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
lib/support/nginx/gitlab
... ... @@ -9,6 +9,7 @@ upstream gitlab {
9 9 server {
10 10 listen YOUR_SERVER_IP:80 default_server; # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
11 11 server_name YOUR_SERVER_FQDN; # e.g., server_name source.example.com;
  12 + server_tokens off; # don't show the version number, a security best practice
12 13 root /home/git/gitlab/public;
13 14  
14 15 # individual nginx logs for this gitlab vhost
... ...