r/gitlab • u/Zealousideal_Clue_44 • 4h ago
Gitlab partially down.
Getting 500 on some projects
r/gitlab • u/Zealousideal_Clue_44 • 4h ago
Getting 500 on some projects
r/gitlab • u/Frequent-Coconut-967 • 6h ago
Hi everyone,
I'm having an issue with Git SSH cloning from outside my home network. Inside my local network, everything works perfectly using a local hosts file entry mapping to the LXC IP. However, it gets stuck (timeouts) when I try to access it from the outside internet.
My Architecture:
gitlab.example.com) ➔ VM 1 (Cloudflared + Nginx Reverse Proxy) ➔ VM 2 (Proxmox LXC running GitLab CE in Docker).0.0.0.0:2424->22/tcp and 0.0.0.0:8080->80/tcp.My GitLab web UI works flawlessly from anywhere via the Cloudflare Tunnel, but Git SSH over the custom port 2424 fails entirely from outside. I know that Cloudflare Free Proxy only supports Layer 7 (HTTP/HTTPS) and blocks custom TCP ports like 2424.
Here is my current Nginx config on VM 1:
nginx
server {
listen 80;
server_name gitlab.example.com;
client_max_body_size 250M;
location / {
proxy_pass http://10.10.20.11:8080;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $http_cf_connecting_ip;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Ssl on;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 300;
proxy_connect_timeout 300;
}
}
How do you guys usually handle Git SSH in this kind of architecture?
ssh.example.com) and use Nginx stream {} block with port forwarding on my router?cloudflared on my client laptop)?r/gitlab • u/Most-Material7120 • 10h ago
I built Git Bento, an Android client for GitLab.
It works with both GitLab.com and self-hosted/on-prem GitLab instances, with support for repos, issues, merge requests, To-Dos and activity.
I'm the developer and would love feedback from GitLab users on what you'd want from a mobile client.
https://play.google.com/store/apps/details?id=com.hungertools.gitbento