Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-12fail_timeout=0 as recommended by UnicornBen Bodenmiller
Set's fail_timeout=0 as recommended by http://unicorn.bogomips.org/Unicorn/Configurator.html#method-i-timeout when Unicorn is running behind nginx.
2014-09-08Merge pull request #7654 from bbodenmiller/patch-13Sytse Sijbrandij
update ssl_ciphers
2014-09-08Merge pull request #7583 from bbodenmiller/httpsSytse Sijbrandij
[Documentation] simplify HTTPS setup details
2014-09-08add optional nginx configs to make more secureBen Bodenmiller
2014-09-08simplify HTTPS setup detailsBen Bodenmiller
also adds comment about updating nginx files during upgrades
2014-09-08update ssl_ciphersBen Bodenmiller
taken from https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html / https://cipherli.st/ backwards compatible ciphers not needed since gitlab does not support ie8
2014-08-28Merge pull request #7378 from jojosch/nginx-ssl-redirectDmitriy Zaporozhets
Use a ? after the $request_uri to perform a valid Redirect while cloning...
2014-08-24Merge pull request #7558 from bbodenmiller/patch-4Dmitriy Zaporozhets
change X-Frame-Options to SAMEORIGIN for nginx SSL config
2014-08-23unify nginx config filesBen Bodenmiller
2014-08-23change X-Frame-Options to SAMEORIGINBen Bodenmiller
needed to allow sidekiq to load on background jobs tab
2014-08-23Use a ? after the $request_uri to perform a valid Redirect while cloning.johannes
fixes #6203 before: ❯ curl -I http://gitlab/namespace/repo.git/info/refs?service=git-upload-pack HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 26 Jul 2014 18:20:27 GMT Content-Type: text/html Content-Length: 178 Connection: keep-alive Location: https://gitlab/namespace/repo.git/info/refs?service=git-upload-pack?service=git-upload-pack after: ❯ curl -I http://gitlab/namespace/repo.git/info/refs\?service=git-upload-pack HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 26 Jul 2014 18:23:54 GMT Content-Type: text/html Content-Length: 178 Connection: keep-alive Location: https://gitlab/namespace/repo.git/info/refs?service=git-upload-pack [ci skip]
2014-08-22Simplify the description of single hash lines based on comments of Ben ↵Sytse Sijbrandij
Bodenmiller.
2014-08-04Simplify the ssl setup file.Sytse Sijbrandij
2014-06-05Move gitlab-ssl nginx config from gitlab-recipesAchilleas Pipinellis
2014-06-03Ensure sidekiq is displayed by setting X-Frame-Options.GitLab
2014-05-30Merge pull request #6986 from agjmills/masterDmitriy Zaporozhets
added SYSV chkconfig property so gitlab starts after MySQLd / nginx
2014-05-27Move from script to bin directory.Marin Jankovski
2014-05-16added SYSV chkconfig property so gitlab starts after MySQLd / nginxAlexander Mills
2014-05-13Update warnings about relative url support.Marin Jankovski
2014-04-07Comment gzip: off be defaultDmitriy Zaporozhets
2014-04-03Disable compression to prevent BREACH attackDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-03-27Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2014-03-26Merge pull request #6222 from nickryand/background_initJacob Vosmaer
Removed the backgrounding of the unicorn_rails startup scripts
2014-03-26 Merge branch 'bugfix/fix_unicorn-sidekiq_confusion_in_gitlab_init_script' ↵Jacob Vosmaer
into 'master' Fix Unicorn-Sidekiq Confusion In GitLab Init Script This merge request fixes issue #126 by updating a few sections of the included GitLab init file where Unicorn was referred to as Sidekiq and vice-versa.
2014-03-26Init script - change start() stop() restart() reload() to xxxx_gitlab()Pawel Krzaczkowski
2014-03-25Removed the backgrounding of the unicorn_rails webapp start call.Nick Downs
2014-03-25Merge pull request #5935 from nmoura/patch-1Jacob Vosmaer
Changed sudo by su -c in init script
2014-03-24Add gzip compression for assets to nginx example.Marin Jankovski
2014-03-12Logrotate daily, keeping 90 days of old logsJacob Vosmaer
Also remove the 'delaycompress' option which is not needed because we use 'copytruncate'.
2014-03-10Some people are getting the error 'The remote end hung up unexpectedly' due ↵dosire
to large chuncks.
2014-03-08Fixed Unicorn-Sidekiq confusion in GitLab init script.Kyle Fazzari
There were a few places in the included init script where Unicorn was referred to as Sidekiq and vice-versa. This fixes #126.
2014-03-04change deploy.sh without mysql, now that we are moving to postgresArif Ali
2014-01-28Add a custom 502 pageJacob Vosmaer
2014-01-27 Merge branch 'upload-limits' into 'master'Dmitriy Zaporozhets
Upload Limits Better documentation for the upload limit. Please have a hard time when they need to change the upload limits, see https://gitlab.com/gitlab-org/gitlab-ce/issues/5
2014-01-27Use either/or to present optionsJacob Vosmaer
2014-01-27Explain what we know about Nginx chunked requestsJacob Vosmaer
2014-01-23Remove version since we don't keep it up to date.dosire
2014-01-22Git over ssh and http are different things.dosire
2014-01-22More explanation for upload limits.dosire
2014-01-09Update the init.d file to the correct locationof the example defaults fileArif Ali
Update the example defaults, include the rest of he variables
2013-12-30Change canonical urls to GitLab Cloud.dosire
2013-12-26Changed sudo by su -cNilton Moura
The sudo command needs a tty to run. If you put this file on a CentOS 6, for example, it will not run in the host startup process. Instead, the 'su -c' runs the command apart if it has or not a tty. I tested this change in a fresh install of gitlab on a CentOS 6.5 with successful.
2013-12-16Merge pull request #5617 from zeeZ/nginx-proxyDmitriy Zaporozhets
Add X-Forwarded-For to nginx config
2013-12-11Update deploy.sh script with assets commandsDmitriy Zaporozhets
2013-12-09Added example defaults file and appropriate documentation.Rovanion Luckey
2013-12-09Merge pull request #5471 from dex4er/feature_etc_default_gitlabJacob Vosmaer
Read configuration variable file (/etc/default/gitlab) if it is present
2013-11-18Add X-Forwarded-For to nginx configzeeZ
2013-11-15Add client_max_body_size to nginx siteJoachim Brandon LeBlanc
Added the client_max_body_size declaration to the nginx server block to prevent 413 errors when http post body is larger than the default (1m).
2013-10-29Read configuration variable file if it is presentPiotr Roszatycki
2013-10-25Report application status through init exit codeJacob Vosmaer