summaryrefslogtreecommitdiff
path: root/app/workers/pages_worker.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42GitLab Bot2022-01-201-8/+1
|
* Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot2021-11-181-3/+1
|
* Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42GitLab Bot2021-09-201-1/+0
|
* Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot2021-08-191-0/+3
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-0/+1
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-201-5/+3
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-181-0/+1
|
* Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-111-0/+2
| | | | | This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
* Enable frozen string literals for app/workers/*.rbgfyoung2018-06-271-0/+2
|
* Rework to minimize changesShinya Maeda2018-03-061-1/+1
|
* Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉2018-01-111-0/+1
|
* Use a dedicated queue for each workerDouwe Maan2017-12-121-1/+1
|
* Add ApplicationWorker and make every worker include itDouwe Maan2017-12-051-1/+1
|
* Re-enable SqlInjection and CommandInjectionBrian Neel2017-08-081-1/+1
|
* Initial work on GitLab Pages updateKamil Trzcinski2017-01-311-1/+5
|
* Move most of PagesWorker logic UpdatePagesServiceKamil Trzcinski2017-01-311-131/+2
|
* Asynchronously remove pagesKamil Trzcinski2017-01-311-1/+10
|
* Rename pages namespace or project path when changedKamil Trzcinski2017-01-311-4/+0
| | | | - Move UploadsTransfer to ProjectTransfer and inherit from this to UploadsTransfer and PagesTransfer
* Revert "Store pages in shared/pages/fqdn/fqdn/public or ↵Kamil Trzcinski2017-01-311-0/+4
| | | | | | shared/pages/fqdn/subpath/public - makes it simpler to implement CNAMEs in future" This reverts commit 86a2a78f0d13a678899460638add6b862059433e.
* Store pages in shared/pages/fqdn/fqdn/public or ↵Kamil Trzcinski2017-01-311-4/+0
| | | | shared/pages/fqdn/subpath/public - makes it simpler to implement CNAMEs in future
* Fix testsKamil Trzcinski2017-01-311-5/+11
|
* Split PagesWorkerKamil Trzcinski2017-01-311-40/+61
|
* Remove locking and add force to FileUtils methodsKamil Trzcinski2017-01-311-20/+12
|
* Fix specsKamil Trzcinski2017-01-311-1/+2
|
* Add GitLab PagesKamil Trzcinski2017-01-311-0/+123
- 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