| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
multiple times
|
| |
|
|
|
| |
Cherry-picked ‘Fix syntax error in conditional statement’
|
| |
|
| |
|
|
|
|
| |
No need to be executable since it is sourced in /etc/init.d/gitlab
|
| |
|
|
|
|
| |
[ci skip]
|
|
|
|
| |
So as to be consistent with what is set in Omnibus
|
| |
|
| |
|
|
|
|
| |
work [ci skip]
|
| |
|
|
|
|
|
|
| |
shared/pages/fqdn/subpath/public - makes it simpler to implement CNAMEs in future"
This reverts commit 86a2a78f0d13a678899460638add6b862059433e.
|
|
|
|
| |
shared/pages/fqdn/subpath/public - makes it simpler to implement CNAMEs in future
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
| |
|
| |
|
|
|
|
|
|
| |
This reverts commit 47b5b441395921e9f8e9982bb3f560e5db5a67bc.
See https://gitlab.com/gitlab-org/gitlab-ce/issues/17877#note_13488047
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/17877 .
This change adds 'defense in depth' against 'Host' HTTP header
injection. It affects normal users in the following way. Suppose your
GitLab server has IP address 1.2.3.4 and hostname gitlab.example.com.
Currently, if you enter 1.2.3.4 in your browser, you get redirected to
1.2.3.4/users/sign_in. After this change, you get redirected from
1.2.3.4 to gitlab.example.com/users/sign_in. This is because the
address you typed in the address bar of your browser ('1.2.3.4'),
which gets stored in the 'Host' header, is now being overwritten to
'gitlab.example.com' in NGINX.
In this change we also make NGINX clear the 'X-Forwarded-Host' header
because Ruby on Rails also uses that header the same wayas the 'Host'
header.
We think that for most GitLab servers this is the right behavior, and
if not then administrators can change this behavior themselves at the
NGINX level.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
[ci skip]
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15398
|
| |
|
|
|
|
|
| |
Otherwise this might 'hide' problems
https://github.com/gitlabhq/gitlabhq/issues/10053#issuecomment-188919319
|
|\
| |
| |
| |
| |
| |
| | |
Add documentation on relative URL support
closes #12773
See merge request !2770
|
| |
| |
| |
| | |
[ci skip]
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixed init.d script not working on OS X
-s flag of su doesn't work correctly on OS X, logging in as the user
and not running the requested command. By moving the bash shell init
inside the su command we avoid the issue
Fixes Issue #3309
See merge request !1728
|
| |/
| |
| |
| |
| |
| | |
-s flag of su doesn't work correctly on some systems, loging in the user
and not running the requested command. By moving the bash shell init
inside the su command we avoid the issue
|
|/
|
|
| |
gitlab_workhorse_dir
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Fix gitlab-ssl nginx config to work when multiple server_names are served over https
|
| |
| |
| |
| | |
over https
|
|/
|
|
|
|
| |
are up and running
Closes https://github.com/gitlabhq/gitlabhq/issues/9869
|
|
|
|
| |
[ci skip]
|
| |
|
|
|
|
|
| |
It turns out that if we do not the declaration from
"location /" wins.
|
|\
| |
| |
| |
| |
| |
| | |
Do not limit workhorse POST/PUT size in NGINX
Limiting, if any, should happen in gitlab-workhorse.
See merge request !1831
|
| |
| |
| |
| | |
Limiting, if any, should happen in gitlab-workhorse.
|
|/ |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Offloads uploading to GitLab Workhorse
- Use /authorize request for fast uploading
- Added backup recipes for artifacts
- Support download acceleration using X-Sendfile
|
| |
|
|
|
|
| |
Users are allowed to supply namespace%2Fproject instead of a numeric ID
|