Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ## Url on which GitLab will be reachable.
  2. external_url 'https://gitlab.example.com'
  3.  
  4. #####################
  5. # GitLab Web server #
  6. #####################
  7. web_server['external_users'] = ['nginx']
  8.  
  9. ################
  10. # GitLab Nginx #
  11. ################
  12. nginx['enable'] = false
  13. # None of the following should matter, as bundled nginx is disabled.
  14. nginx['redirect_http_to_https'] = false
  15. nginx['listen_port'] = 80
  16. nginx['listen_https'] = false
  17. nginx['proxy_set_headers'] = {
  18. "X-Forward-Proto" => "http",
  19. "X-Forwarded-Ssl" => "on"
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement