2014-08-22 16:51:59 -04:00
|
|
|
## GitLab
|
|
|
|
##
|
|
|
|
## Lines starting with two hashes (##) are comments with information.
|
|
|
|
## Lines starting with one hash (#) are configuration parameters that can be uncommented.
|
|
|
|
##
|
|
|
|
##################################
|
2015-06-11 09:11:37 -04:00
|
|
|
## CONTRIBUTING ##
|
|
|
|
##################################
|
|
|
|
##
|
|
|
|
## If you change this file in a Merge Request, please also create
|
|
|
|
## a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
|
|
|
|
##
|
2014-08-22 16:51:59 -04:00
|
|
|
###################################
|
|
|
|
## configuration ##
|
|
|
|
###################################
|
|
|
|
##
|
2014-11-09 02:33:27 -05:00
|
|
|
## See installation.md#using-https for additional HTTPS configuration details.
|
2014-01-27 05:19:45 -05:00
|
|
|
|
2015-10-29 09:21:24 -04:00
|
|
|
upstream gitlab-workhorse {
|
|
|
|
server unix:/home/git/gitlab/tmp/sockets/gitlab-workhorse.socket fail_timeout=0;
|
2015-08-31 09:30:15 -04:00
|
|
|
}
|
2015-07-28 08:33:19 -04:00
|
|
|
|
2014-08-22 16:51:59 -04:00
|
|
|
## Normal HTTP host
|
2013-04-22 06:44:09 -04:00
|
|
|
server {
|
2015-10-12 10:42:14 -04:00
|
|
|
## Either remove "default_server" from the listen line below,
|
2014-12-03 05:43:27 -05:00
|
|
|
## or delete the /etc/nginx/sites-enabled/default file. This will cause gitlab
|
|
|
|
## to be served if you visit any address that your server responds to, eg.
|
|
|
|
## the ip address of the server (http://x.x.x.x/)n 0.0.0.0:80 default_server;
|
2014-11-03 09:25:31 -05:00
|
|
|
listen 0.0.0.0:80 default_server;
|
|
|
|
listen [::]:80 default_server;
|
2014-08-04 09:57:59 -04:00
|
|
|
server_name YOUR_SERVER_FQDN; ## Replace this with something like gitlab.example.com
|
|
|
|
server_tokens off; ## Don't show the nginx version number, a security best practice
|
2013-04-22 06:44:09 -04:00
|
|
|
root /home/git/gitlab/public;
|
2014-08-22 16:51:59 -04:00
|
|
|
|
2014-11-09 02:33:27 -05:00
|
|
|
## See app/controllers/application_controller.rb for headers set
|
|
|
|
|
2014-08-22 16:51:59 -04:00
|
|
|
## Individual nginx logs for this GitLab vhost
|
2013-04-22 06:44:09 -04:00
|
|
|
access_log /var/log/nginx/gitlab_access.log;
|
|
|
|
error_log /var/log/nginx/gitlab_error.log;
|
|
|
|
|
|
|
|
location / {
|
2015-11-27 07:56:26 -05:00
|
|
|
client_max_body_size 0;
|
2015-12-11 10:42:40 -05:00
|
|
|
gzip off;
|
2015-08-31 09:30:15 -04:00
|
|
|
|
|
|
|
## https://github.com/gitlabhq/gitlabhq/issues/694
|
|
|
|
## Some requests take more than 30 seconds.
|
|
|
|
proxy_read_timeout 300;
|
|
|
|
proxy_connect_timeout 300;
|
|
|
|
proxy_redirect off;
|
|
|
|
|
2015-12-11 10:42:40 -05:00
|
|
|
proxy_http_version 1.1;
|
2015-09-07 07:05:29 -04:00
|
|
|
|
2015-08-31 09:30:15 -04:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
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;
|
|
|
|
|
2015-10-29 09:21:24 -04:00
|
|
|
proxy_pass http://gitlab-workhorse;
|
2015-08-31 09:30:15 -04:00
|
|
|
}
|
2014-05-13 11:59:08 -04:00
|
|
|
}
|