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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-30Release v0.8.1v0.8.10-8-stableNick Thomas
2018-04-30Fix syntax and complexity failures created while resolving conflictsNick Thomas
2018-04-30Restore the old in-place chroot behaviour as a command-line optionNick Thomas
2018-04-27Create /dev/random and /dev/urandom when daemonizing and jailingNick Thomas
Go on Linux normally uses the getrandom() syscall to get entropy. However, this is onl available for Linux version >= 3.17 Making /dev/random and /dev/urandom available in the chrooted jail allows the daemon to operate correctly on these systems. It's important to handle this automatically, as the previous workaround of manually creating these character devices is made more difficult by the use of a random directory in $TMPDIR.
2018-04-27Clean up the created jail directory if building the jail doesn't workNick Thomas
2018-04-05Merge branch '120-release-v0.8.0' into 'master'v0.8.0Nick Thomas
Release v0.8.0 Closes #120 See merge request gitlab-org/gitlab-pages!83
2018-04-05Release v0.8.0Nick Thomas
2018-03-29Merge branch 'ensure-certificate-thread-safe' into 'master'Nick Thomas
Make certificate parsing thread-safe Closes #118 See merge request gitlab-org/gitlab-pages!79
2018-03-29Make certificate parsing thread-safeJacob Vosmaer
2018-03-29Merge branch 'domain-types' into 'master'Nick Thomas
Put domain code in a separate package See merge request gitlab-org/gitlab-pages!78
2018-03-29Put domain code in a separate packageJacob Vosmaer (GitLab)
2018-03-28Merge branch '116-dont-log-query-strings' into 'master'Nick Thomas
Resolve "Don't log query strings" Closes #116 See merge request gitlab-org/gitlab-pages!77
2018-03-28Don't log request or referer query stringsNick Thomas
2018-03-23Merge branch '112-fix-failing-tests' into 'master'Nick Thomas
Run the acceptance tests in both daemonized and ordinary mode, verifying TLS Closes #112 See merge request gitlab-org/gitlab-pages!75
2018-03-23Use TLS verification in the acceptance testsNick Thomas
This will help us to find more failures. In addition, this commit fixes an intermittent test failure - if a HTTP request to pages was taking > 100ms to return any headers, it would be failed. Two scenarios exist where we might take > 100ms: * The "artifacts server timeout" test case, where we hang on for a whole second * Loading and parsing SSL_CERT_FILE on first request in the artifacts server proxy was slowing down the initial request enough to trigger this in some environments
2018-03-23Fix intermittent "zombie" process creationNick Thomas
These processes weren't actually zombies at all, they were still running fine - just outliving their parents as they were never given an interrupt signal in the timeout case.
2018-03-23Use the certificate fixture in the artifacts server testsNick Thomas
2018-03-23Ignore the acceptance tests for coverage purposesNick Thomas
2018-03-23Add go1.10 to the list of testsNick Thomas
2018-03-23Run the acceptance tests both daemonized and notNick Thomas
2018-03-23Merge branch 'macos-artifacts-ssl' into 'master'Nick Thomas
Fix SSL artifacts requests on macos Closes #112 See merge request gitlab-org/gitlab-pages!76
2018-03-23Fix SSL artifacts requests on macosJacob Vosmaer (GitLab)
2018-03-22Merge branch 'domain-map' into 'master'Nick Thomas
Rename 'domains' type to 'domainMap' See merge request gitlab-org/gitlab-pages!73
2018-03-22Rename 'domains' type to 'domainMap'Jacob Vosmaer
2018-03-22Add v0.7.1 to the changelog in masterNick Thomas
2018-03-21Merge branch 'ac/dns-and-ssl' into 'master'Nick Thomas
Add /etc/resolv.conf and /etc/ssl/certs to pages chroot Closes #86 See merge request gitlab-org/gitlab-pages!51
2018-03-21Add /etc/resolv.conf and /etc/ssl/certs to pages chrootAlessio Caiazza
2018-03-14Merge branch 'wait-for-roundtrip' into 'master'Nick Thomas
Wait for a successful roundtrip See merge request gitlab-org/gitlab-pages!72
2018-03-14Wait for a successful roundtripJacob Vosmaer
2018-03-14Merge branch '105-followup-tests' into 'master'Nick Thomas
Resolve "Add tests around the httpsOnly check for domains lacking the configuration option" Closes #105 See merge request gitlab-org/gitlab-pages!71
2018-03-14Add acceptance tests for two very simple casesNick Thomas
2018-03-13Merge branch 'sh-fix-pages-nil' into 'master'Nick Thomas
Fix nil reference error when project is not in config.json Closes gitlab-com/infrastructure#3848 See merge request gitlab-org/gitlab-pages!70
2018-03-13Fix nil reference error when project is not in config.jsonStan Hu
2018-03-13Merge branch 'feature/add-more-debug-logging' into 'master'Nick Thomas
Add more logging to gitlab pages daemon See merge request gitlab-org/gitlab-pages!62
2018-03-13Add more logging to gitlab pages daemonmaxmeyer
2018-03-12Merge branch 'fix-reponse-timeout-swap' into 'master'Nick Thomas
Fix response timeout swap in test See merge request gitlab-org/gitlab-pages!69
2018-03-12Fix response timeout swap in testJacob Vosmaer
2018-03-12Merge branch 'wait-until-request' into 'master'Nick Thomas
Wait until a request succeeds in test setup See merge request gitlab-org/gitlab-pages!68
2018-03-12Wait until a request succeeds in test setupJacob Vosmaer (GitLab)
2018-03-09Merge branch 'require-not-assert' into 'master'Nick Thomas
Use require.NoError to halt tests after errors See merge request gitlab-org/gitlab-pages!67
2018-03-09Use require.NoError to halt tests after errorsJacob Vosmaer
2018-03-08Merge branch 'parallelize-project-scan-io-2' into 'master'Nick Thomas
Parallelize IO during the big project scan See merge request gitlab-org/gitlab-pages!61
2018-03-08Parallelize project config load IOJacob Vosmaer
2018-03-08Merge branch 'dirwalk-dirents' into 'master'Nick Thomas
Avoid unnecessary stat calls when building domain maps See merge request gitlab-org/gitlab-pages!60
2018-03-08Merge branch 'patch-around-racy-test' into 'master'Nick Thomas
Remove flaky assertion from TestWatchDomains See merge request gitlab-org/gitlab-pages!64
2018-03-08Remove flaky assertion from TestWatchDomainsJacob Vosmaer (GitLab)
2018-03-08Don't allow custom root dirJacob Vosmaer
2018-03-08Use godirwak.ReadDirentsJacob Vosmaer
2018-03-08Merge branch 'remove-unused-errors' into 'master'Nick Thomas
Remove unused error return values See merge request gitlab-org/gitlab-pages!63
2018-03-08Remove unused error return valuesJacob Vosmaer (GitLab)