[DRE-maint] Bug#857360: gitlab_8.13.11+dfsg-4 no longer available, unable to install

Joel Maxuel j.maxuel at gmail.com
Sat Apr 22 15:57:52 UTC 2017


> Currently it support autoconfiguration of nginx only (you may open a
> wishlist bug for apache support). You'll have to manually configure
apache.

I ended up installing nginx, didn't realize it didn't install with gitlab
but required.

Getting closer now, but with the  following files edited for my port 1443
host to FQDN...

/etc/gitlab/gitlab.yml (host: <domainname> \n port: 1443)
/etc/gitlab/unicorn.rb (listen "<domainname>:1443", :tcp_nopush => true)
/var/lib/gitlab/gitlab-shell-config.yml (gitlab_url: "https://
<domainname>:1443/")

... as well as the nginx gitlab enabled site configured for HTTP 8808/HTTPS
1443 (below), I get a 502 "Bad Gateway" error.

  listen 0.0.0.0:8088;
  listen [::]:8088 ipv6only=on;
  server_name <domainname>; ## Replace this with something like
gitlab.example.com
  server_tokens off; ## Don't show the nginx version number, a security
best practice
  return 301 https://$http_host$request_uri;
  access_log  /var/log/nginx/gitlab_access.log;
  error_log   /var/log/nginx/gitlab_error.log;

...

  listen 0.0.0.0:1443 ssl;
  listen [::]:1443 ipv6only=on ssl;
  server_name <domainname>; ## Replace this with something like
gitlab.example.com
  server_tokens off; ## Don't show the nginx version number, a security
best practice
  root /usr/share/gitlab/public;


Not sure what to do next.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-ruby-extras-maintainers/attachments/20170422/8c8f4211/attachment.html>


More information about the Pkg-ruby-extras-maintainers mailing list