gitlab: upgrade to CE v.7.6.1

This commit is contained in:
Sameer Naik 2014-12-24 20:55:42 +05:30
parent a951b94043
commit d1428a0fd5
4 changed files with 10 additions and 9 deletions

View File

@ -3,6 +3,7 @@
**latest** **latest**
- disable nginx ipv6 if host does not support it. - disable nginx ipv6 if host does not support it.
- init: added GITLAB_BACKUP_TIME configuration option - init: added GITLAB_BACKUP_TIME configuration option
- gitlab: upgrade to CE v.7.6.1
**7.6.0** **7.6.0**
- add support for configuring piwik - add support for configuring piwik

View File

@ -1 +1 @@
7.6.0 7.6.1

View File

@ -13,9 +13,9 @@
# #
ENV['RAILS_RELATIVE_URL_ROOT'] = "{{GITLAB_RELATIVE_URL_ROOT}}" ENV['RAILS_RELATIVE_URL_ROOT'] = "{{GITLAB_RELATIVE_URL_ROOT}}"
# Use at least one worker per core if you're on a dedicated server, # Read about unicorn workers here:
# more will usually help for _short_ waits on databases/caches. # http://doc.gitlab.com/ee/install/requirements.html#unicorn-workers
# The minimum is 2 #
worker_processes {{UNICORN_WORKERS}} worker_processes {{UNICORN_WORKERS}}
# Since Unicorn is never exposed to outside clients, it does not need to # Since Unicorn is never exposed to outside clients, it does not need to
@ -37,10 +37,10 @@ listen "127.0.0.1:8080", :tcp_nopush => true
# nuke workers after 30 seconds instead of 60 seconds (the default) # nuke workers after 30 seconds instead of 60 seconds (the default)
# #
# NOTICE: git push over http depends on this value. # NOTICE: git push over http depends on this value.
# If you want be able to push huge amount of data to git repository over http # If you want be able to push huge amount of data to git repository over http
# you will have to increase this value too. # you will have to increase this value too.
# #
# Example of output if you try to push 1GB repo to GitLab over http. # Example of output if you try to push 1GB repo to GitLab over http.
# -> git push http://gitlab.... master # -> git push http://gitlab.... master
# #

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -e set -e
GITLAB_VERSION=7.6.0 GITLAB_VERSION=7.6.1
GITLAB_SHELL_VERSION=2.4.0 GITLAB_SHELL_VERSION=2.4.0
GITLAB_HOME="/home/git" GITLAB_HOME="/home/git"