Only a few modifications here, for use with CloudFlare Origin SSL.
## GitLab ## ## Pages serving host server { listen 0.0.0.0:80; listen [::]:80; listen 0.0.0.0:443 ssl http2; listen [::]:443 ssl http2; ## Replace this with something like pages.gitlab.com server_name ~^([^\.]+)?.felinewith.me; ssl on; ssl_certificate /***/cf_cert.pem; ssl_certificate_key /***/cf_key.key; ## Individual nginx logs for GitLab pages access_log /var/log/nginx/gitlab_pages_access.log; error_log /var/log/nginx/gitlab_pages_error.log; root /home/git/gitlab/shared/pages/$1; try_files public/$uri $uri @default; location / { set $ssl off; if ($scheme = https) { set $ssl on; } proxy_set_header Host $http_host; proxy_set_header X-Real-IP $http_cf_connecting_ip; proxy_set_header X-Forwarded-For $http_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Ssl $ssl; proxy_set_header REMOTE_ADDR $http_cf_connecting_ip; # The same address as passed to GitLab Pages: `-listen-proxy` proxy_pass http://localhost:8090/; } # Define custom error pages error_page 403 /403.html; error_page 404 /404.html; }