Sameer Naik
81ef8a135d
fix supervisord warning message
2014-05-05 23:13:06 +05:30
Sameer Naik
57d5f9dfb2
Merge branch 'arnos-Ubuntu_14.04'
2014-05-05 23:12:36 +05:30
unknown
050bc993ea
An issue with OpenSSH, when an account is locked it doesn't check the authorized_keys file anymore (see http://grid.ncsa.illinois.edu/ssh/ts_server.html , http://stackoverflow.com/questions/15664561/ssh-key-asks-for-password )
...
Running passwd -d git fixes this
2014-05-05 13:29:59 -04:00
unknown
e2eb91c170
Removed ruby-switch as it is no longer available for Ubuntu:14.04 (see http://askubuntu.com/questions/452243/what-versions-of-ruby-are-supported-in-14-04 )
...
Is it required now that Ruby 2.1 is out?
2014-05-05 13:29:58 -04:00
unknown
63b983719f
update ruby to install 2.1
2014-05-05 13:29:57 -04:00
unknown
d5df9a8755
The postgresql-client default is now 9.3
2014-05-05 13:29:56 -04:00
unknown
c2d4fae51b
add-apt-repository is now in the software-properties-common package
2014-05-05 13:29:55 -04:00
unknown
78a296f494
Changed image to use the lastest build (based of Ubuntu:14.04LTS)
2014-05-05 13:29:54 -04:00
Sameer Naik
1da001567b
Merge branch 'LordFPL-patch-1', Closes #59
2014-05-05 21:31:10 +05:30
LordFPL
924ee1975d
Deleting SMTP_USER/PASS when empty
...
Without this, a plain auth will fail.
2014-05-05 21:30:56 +05:30
Sameer Naik
8745b5d881
Merge branch 'mbrgm-master'
2014-05-05 21:27:08 +05:30
Marius Bergmann
df8b20c5c5
Set executable flag on /home/git/data explicitely
2014-05-05 14:39:08 +02:00
Sameer Naik
52f748d64f
config: use double quotes around all string and path parameters, fixes #57
2014-05-04 09:20:37 +05:30
Sameer Naik
cbe5c60c56
config: update redis url for all execution environments
2014-05-04 09:19:11 +05:30
Sameer Naik
a8426f04f6
README: cleanup
2014-04-30 21:57:21 +05:30
Sameer Naik
c713a0cce6
ssl: trust our own server certificate
2014-04-30 21:57:09 +05:30
Sameer Naik
9fd8e4e357
added CA_CERTIFICATES_PATH configuration option to specify trusted root certificates.
2014-04-30 21:56:57 +05:30
Sameer Naik
b6a664060b
README: fix GITLAB_PORT documentation
2014-04-30 09:32:55 +05:30
Sameer Naik
4f65bc2d95
Merge branch 'feature/ssl-support', closes #54
2014-04-29 20:53:49 +05:30
Sameer Naik
5378fc6819
Updated changelog
2014-04-29 20:50:09 +05:30
Sameer Naik
c3e4b21af9
README: added instructions on installing the root certificate at the web browser
2014-04-29 20:48:52 +05:30
Sameer Naik
b3015cdd42
README: fix command for creation of the CSR
2014-04-29 10:04:02 +05:30
Sameer Naik
eacd5c2c4e
README: fix command for generation of the private key
2014-04-29 10:02:08 +05:30
Sameer Naik
1df4ce964f
README: fix link to certificate generation section in TOC
2014-04-29 10:00:30 +05:30
Sameer Naik
b8e8f2f6ef
removed the kickstart wget request
...
the application should already be kickstarted when gitlab:check rake
task is executed.
2014-04-29 00:53:06 +05:30
Sameer Naik
f5f7e7786a
ssl: check if required files exist before enabling https support
2014-04-29 00:49:31 +05:30
Sameer Naik
e69a39af1e
README: fix typos
2014-04-28 23:57:24 +05:30
Sameer Naik
4e97f78641
README: document SSL support
2014-04-28 23:42:29 +05:30
Sameer Naik
c1f501c0de
added SSL_DHPARAM_PATH configuration option to specify path of dhparam.pem file.
2014-04-28 23:41:05 +05:30
Sameer Naik
9089589402
README: update reference links
2014-04-28 20:55:29 +05:30
Sameer Naik
aa709bb49d
configure ssl session cache
2014-04-28 20:55:29 +05:30
Sameer Naik
dfb5dd1d20
added SSL_CERTIFICATE_PATH configuration option to specify path of ssl certificate
2014-04-28 20:55:29 +05:30
Sameer Naik
e989294db8
renamed config option GITLAB_SSL_SELF_SIGNED to SSL_SELF_SIGNED
2014-04-28 20:55:29 +05:30
Sameer Naik
552d4ade03
gitlab-shell: use default gitlab_url talk to gitlab-ce api when signed ssl certificates are used
2014-04-28 20:55:29 +05:30
Sameer Naik
4b1769a162
gitlab-shell: use http over localhost to talk to gitlab-ce api whenever possible
2014-04-28 20:55:29 +05:30
Sameer Naik
11729891b9
added GITLAB_HTTPS_ONLY configuration option
2014-04-28 20:55:29 +05:30
Sameer Naik
63135215fc
added gitlab.https.permissive nginx template that will be used when you want to allow both http and https access
2014-04-28 20:55:29 +05:30
Sameer Naik
6b3623fb5d
renamed gitlab.https to gitlab.https.strict
2014-04-28 20:55:29 +05:30
Sameer Naik
e6d66d608c
export port 443
2014-04-28 20:55:29 +05:30
Sameer Naik
bfd9929109
redirect to the correct port during a http to https redirection
...
Fixes http to https redirection when the default https port is not used
got the GITLAB_PORT
For example running the container like so:
```bash
docker run -i -t --rm \
-p 4443:443 -p 8080:80 -e "GITLAB_HTTPS=true" -e "GITLAB_PORT=4443" \
sameersbn/gitlab:latest
```
Will make sure you are redirected to https://localhost:4443 when you
access the application at http://localhost:8080
2014-04-28 20:55:29 +05:30
Sameer Naik
ca08c72e19
perform http to https redirection with same hostname as the request
2014-04-28 20:55:29 +05:30
Sameer Naik
c0f3f298c3
nginx: use the gitlab.https config if https is enabled
2014-04-28 20:55:29 +05:30
Sameer Naik
d389bf1ef3
added gitlab.https nginx template for ssl support
2014-04-28 20:55:29 +05:30
Sameer Naik
5443eb4583
added GITLAB_SSL_SELF_SIGNED configuration option
2014-04-28 20:55:29 +05:30
Sameer Naik
7d012f8468
README: document GITLAB_HTTPS setting
2014-04-28 20:55:28 +05:30
Sameer Naik
54333b951b
README: added waffle.io badge for testing status
2014-04-28 20:55:04 +05:30
Sameer Naik
4dc1ebde4a
Merge pull request #55 from waffle-iron/master
...
waffle.io Badge
2014-04-28 19:15:18 +05:30
Making GitHub Delicious.
57273d5bf5
add waffle.io badge
2014-04-28 07:44:47 -06:00
Sameer Naik
cd21d296b6
Merge branch 'feature/fix-usage-with-non-standard-ports', fixes #53 , #34
2014-04-26 17:37:28 +05:30
Sameer Naik
c8a62b1c94
fix git over ssh when the default http/https ports are not used.
...
Internally the SSH and the http/https servers always bind to ports 22 and
80/443 respectively. If the GITLAB_PORT variable is set to any other
port, then cloning over SSH would not work.
This is because internally gitlab-shell tries to communicate with the
gitlab server over http interface. In gitlab-shell configured with
the GITLAB_PORT value the conmmunication will effective fail and thereby
the cloning operation would return an error.
To fix this, we make gitlab-shell communicate with the http server
directly with the default http/https ports since this is all internal.
Prior to this update, cloning repositories over ssh protocol would not
work when the container is started in the following way:
```bash
docker run -i -t --rm \
-p 8888:80 -p 2222:22 \
-e "GITLAB_PORT=8888" -e "GITLAB_SHELL_SSH_PORT=2222" \
sameersbn/gitlab
```
2014-04-26 17:37:13 +05:30