1. 04 3月, 2017 1 次提交
  2. 03 3月, 2017 1 次提交
  3. 23 2月, 2017 2 次提交
  4. 01 2月, 2017 1 次提交
    • K
      Add GitLab Pages · 120f9aba
      Kamil Trzcinski 提交于
      - The pages are created when build artifacts for `pages` job are uploaded
      - Pages serve the content under: http://group.pages.domain.com/project
      - Pages can be used to serve the group page, special project named as host: group.pages.domain.com
      - User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project
      - Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings
      - The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB)
      - The public/ is extracted from artifacts and content is served as static pages
      - Pages asynchronous worker use `dd` to limit the unpacked tar size
      - Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml
      - Pages are part of backups
      - Pages notify the deployment status using Commit Status API
      - Pages use a new sidekiq queue: pages
      - Pages use a separate nginx config which needs to be explicitly added
      120f9aba
  5. 10 1月, 2017 1 次提交
  6. 30 11月, 2016 2 次提交
  7. 27 10月, 2016 1 次提交
  8. 24 10月, 2016 1 次提交
  9. 11 8月, 2016 1 次提交
  10. 09 8月, 2016 1 次提交
  11. 02 7月, 2016 1 次提交
  12. 30 6月, 2016 1 次提交
  13. 03 6月, 2016 2 次提交
  14. 24 5月, 2016 1 次提交
  15. 17 5月, 2016 1 次提交
  16. 30 3月, 2016 1 次提交
  17. 22 3月, 2016 1 次提交
  18. 19 11月, 2015 1 次提交
  19. 18 11月, 2015 1 次提交
  20. 10 11月, 2015 1 次提交
    • K
      Implement Build Artifacts · d0e3e823
      Kamil Trzcinski 提交于
      - Offloads uploading to GitLab Workhorse
      - Use /authorize request for fast uploading
      - Added backup recipes for artifacts
      - Support download acceleration using X-Sendfile
      d0e3e823
  21. 06 10月, 2015 2 次提交
  22. 04 10月, 2015 1 次提交
  23. 16 9月, 2015 3 次提交
  24. 25 7月, 2015 2 次提交
  25. 10 7月, 2015 1 次提交
  26. 09 7月, 2015 2 次提交
  27. 08 7月, 2015 1 次提交
  28. 23 6月, 2015 2 次提交
  29. 22 6月, 2015 2 次提交
  30. 02 4月, 2015 1 次提交
    • S
      Improve regexp to prevent false positives · b277f23a
      Stan Hu 提交于
      If a filename happened to contain "db" and enough "rwx" characters before, then
      this test would previously fail. For example:
      
      ```
      drwxr-xr-x gitlab-runner/gitlab-runner      0 2015-04-02 07:46 uploads/tmp/cassidy.stokes8477/gitlabhq/36d972fa55d6b44810fc6fd843473adb/
      ```
      
      Adding a space before the "db" match string tightens up the regexp and reduces the
      chance of unintended match.
      b277f23a