Commit 69a31ac314d93abba197f860d5720d130605c635
1 parent
9777059f
Exists in
master
and in
90 other branches
Switch gitlab to port 81
On SELinux-enabled systems there is a restriction on which ports you can actually bind to. 81 is allowed by the defautl configuration so let's go with that.
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
cookbooks/colab/templates/01-apps.yaml.erb
cookbooks/gitlab/templates/nginx.conf.erb
test/gitlab_test.sh
... | ... | @@ -14,7 +14,7 @@ test_gitlab_responds() { |
14 | 14 | |
15 | 15 | test_static_content_served_correctly() { |
16 | 16 | file=$(run_on integration ls -1 '/usr/lib/gitlab/public/assets/*.css' | head -1 | xargs basename) |
17 | - assertTrue 'gitlab static content served by nginx' "run_on integration curl --head http://localhost:8081/gitlab/assets/$file | grep 'Content-Type: text/css'" | |
17 | + assertTrue 'gitlab static content served by nginx' "run_on integration curl --head http://localhost:81/gitlab/assets/$file | grep 'Content-Type: text/css'" | |
18 | 18 | } |
19 | 19 | |
20 | 20 | test_redirects_to_the_correct_host() { | ... | ... |