All was going well but my certificate expired before I renewed and now I can’t renew and I think it is due to the https redirecting , been trying to turn that all temporary but am getting no where fast, I also thought that lets encrypt was set to be allowed to use http… help much appreciated
Failed authorization procedure. gitlab.adamprocter.co.uk (http-01): urn:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from http://gitlab.adamprocter.co.uk/.well-known/acme-challenge/BmN0DNDTSjN-9i93xpxgv2tr3rBjL2Y3P0hRBvLwXA0
Here is the nginx file
upstream gitlab-workhorse {
server unix:/var/opt/gitlab/gitlab-workhorse/socket fail_timeout=0;
}
Non-secure redirects to secure (except for LetsEncrypt)
server {
listen 217.147.85.86:80;
listen [::]:80 ipv6only=on;
server_name gitlab.adamprocter.co.uk;
server_tokens off;Don’t show the nginx version number, a security best practice
Handle LetsEncrypt validation
location ~ /.well-known {
allow all;
root /usr/share/nginx/html;
}location ~ /\.well-known/acme-challenge/ { allow all; root /usr/share/nginx/html;
}
Redirect all other requests to secure
location / {
return 301 https://$http_host$request_uri;
}
}
Secure does all the real work
server {
listen 217.147.85.86:443 ssl;
listen [::]:443 ssl ipv6only=on;
server_name gitlab.adamprocter.co.uk;
server_tokens off;
Strong SSL Security
https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html & https://cipherli.st/
ssl on;
ssl_certificate /etc/letsencrypt/live/gitlab.adamprocter.co.uk/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/gitlab.adamprocter.co.uk/privkey.pem;GitLab needs backwards compatible ciphers to retain compatibility with Java IDEs
ssl_ciphers ‘ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4’;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 5m;
Individual nginx logs for this GitLab vhost
access_log /var/log/nginx/gitlab_access.log;
error_log /var/log/nginx/gitlab_error.log;
location / {
client_max_body_size 0;
gzip off;
## https://github.com/gitlabhq/gitlabhq/issues/694 ## Some requests take more than 30 seconds. proxy_read_timeout 300; proxy_connect_timeout 300; proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Host gitlab.adamprocter.co.uk; proxy_set_header X-Forwarded-Host ""; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Ssl on; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://gitlab-workhorse;
}
error_page 404 /404.html;
error_page 422 /422.html;
error_page 500 /500.html;
error_page 502 /502.html;
location ~ ^/(404|422|500|502).html$ {
root /opt/gitlab/embedded/service/gitlab-rails/public;
internal;
}
Also include LetsEncrypt on secure
location ~ /.well-known {
root /usr/share/nginx/html;
}
}
and my git.rb
nginx[‘enable’] = false
You don’t need any special configuration of
gitlab_git_http_server
external_url ‘https://gitlab.adamprocter.co.uk’ # No port number here, but with HTTPS
web_server[‘external_users’] = [‘nginx’]
gitlab_rails[‘trusted_proxies’] = [ ‘192.168.1.0/24’, ‘192.168.2.1’, ‘2001:0db8::/32’ ]