I have create Gitlab from an image GitLab 6.4.3 CE. With 2Gb/2 Core CPU instance.
When I try to reach my domain, it will automatic redirect to <domain>/users/sign_in without data received.
however, in /home/git/gitlab/log/production.log haven’t show that it dispatch /users/sign_in at all, only single request that have been processed is
Started GET “/” for 127.0.0.1 at 2014-01-05 00:26:45 -0500 Processing by DashboardController#show as HTML Completed 401 Unauthorized in 26ms
I already modify /etc/nginx/site-enable/gitlab and restart both gitlab - nginx service…
Nginx config upstream gitlab { server unix:/home/git/gitlab/tmp/sockets/gitlab.socket; }
server { listen *:80; # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea server_name gitlab03.jomyut.net; # e.g., server_name source.example.com; server_tokens off; # don’t show the version number, a security best practice root /home/git/gitlab/public;
access_log /var/log/nginx/gitlab_access.log; error_log /var/log/nginx/gitlab_error.log;
location / { # serve static files from defined root folder;. # @gitlab is a named location for the upstream fallback, see below try_files $uri $uri/index.html $uri.html @gitlab; }
location @gitlab { proxy_read_timeout 300; # https://github.com/gitlabhq/gitlabhq/issues/694 proxy_connect_timeout 300; # https://github.com/gitlabhq/gitlabhq/issues/694 proxy_redirect off;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://gitlab;
} }
This is clean image with just a few settings as show in how-to step-by-step. Any comments to make it work?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.