Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
e72b7cc2
Commit
e72b7cc2
authored
Aug 20, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document the extra.sign_in_text setting for CE
parent
ed9e922d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
doc/README.md
doc/README.md
+1
-0
doc/customization/welcome_message.md
doc/customization/welcome_message.md
+34
-0
No files found.
doc/README.md
View file @
e72b7cc2
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
-
[
System hooks
](
system_hooks/system_hooks.md
)
Let GitLab notify you when certain management tasks need to be carried out.
-
[
System hooks
](
system_hooks/system_hooks.md
)
Let GitLab notify you when certain management tasks need to be carried out.
-
[
Security
](
security/README.md
)
Learn what you can do to further secure your GitLab instance.
-
[
Security
](
security/README.md
)
Learn what you can do to further secure your GitLab instance.
-
[
Update
](
update/README.md
)
Update guides to upgrade your installation.
-
[
Update
](
update/README.md
)
Update guides to upgrade your installation.
-
[
Welcome message
](
customization/welcome_message.md
)
Add a custom welcome message to the sign-in page.
## Contributor documentation
## Contributor documentation
...
...
doc/customization/welcome_message.md
0 → 100644
View file @
e72b7cc2
# Add a welcome message to the sign-in page (GitLab Community Edition)
It is possible to add a markdown-formatted welcome message to your GitLab
sign-in page. Users of GitLab Enterprise Edition should use the
[
branded login
page feature
](
/ee/customization/branded_login_page.html
)
instead.
## Omnibus-gitlab example
In
`/etc/gitlab/gitlab.rb`
:
```
ruby
gitlab_rails
[
'extra_sign_in_text'
]
=
<<
'EOS'
# ACME GitLab
Welcome to the [ACME](http://www.example.com) GitLab server!
EOS
```
Run
`sudo gitlab-ctl reconfigure`
for changes to take effect.
## Installation from source
In
`/home/git/gitlab/config/gitlab.yml`
:
```
yaml
# snip
production
:
# snip
extra
:
sign_in_text
:
|
# ACME GitLab
Welcome to the [ACME](http://www.example.com) GitLab server!
```
Run
`sudo service gitlab reload`
for the change to take effect.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment