summaryrefslogtreecommitdiff
path: root/lib/support/nginx/gitlab-pages
Commit message (Collapse)AuthorAgeFilesLines
* Fix proxy config in Gitlab Pages nginx examplesNick Thomas2017-08-081-1/+4
|
* Simplify NGINX server_name regexAchilleas Pipinellis2017-01-311-1/+1
|
* Change the pages daemon proxy listen port to 8090Achilleas Pipinellis2017-01-311-1/+1
| | | | So as to be consistent with what is set in Omnibus
* Change NGINX pages configs to account for the Pages daemonAchilleas Pipinellis2017-01-311-9/+7
|
* Fix confusing implementation detail in nginx config about how gitlab-pages ↵Kamil Trzcinski2017-01-311-2/+2
| | | | work [ci skip]
* Bring back GitLab Pages SSL configKamil Trzcinski2017-01-311-0/+3
|
* Revert "Store pages in shared/pages/fqdn/fqdn/public or ↵Kamil Trzcinski2017-01-311-7/+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/+7
| | | | shared/pages/fqdn/subpath/public - makes it simpler to implement CNAMEs in future
* Add GitLab PagesKamil Trzcinski2017-01-311-0/+27
- 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