TCosta29

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by TCosta29

  1. Yeah, well I'll try to use that video to see if it works out Update: followed those tutorials and it worked just fine! Thanks for the assist!
  2. Yes I'm using "MyDomain".duckdns.org/nextcloud to acess to my nextcloud and plex. I followed this tutorial to setup my letsencrypt docker. https://cyanlabs.net/tutorials/the-complete-unraid-reverse-proxy-duck-dns-dynamic-dns-and-letsencrypt-guide/ Atm I don't have any include in the site-confs/default file, but I'll add that one that you mentioned and try if it works!
  3. Thanks! That did solve the cerificate problem, but now it falls back to my Nextcloud docker instead of my git one. Whenever I type git."MyDomain".duckdns.org it falls back to git."MyDomain".duckdns.org/nextcloud I must be missing something. Do I need to add a new location in the NGINX site-confs/default file? I did create the file inside proxy-confs/gitlab-ce.subdomain.conf but do I need to import this file somewhere? I'm trully confused with all of this.
  4. I changed my git extra parameters to --env GITLAB_OMNIBUS_CONFIG="external_url 'https://git."MySubdomain".duckdns.org';registry_external_url 'https://registry.subdomain.duckdns.org';gitlab_rails['gitlab_ssh_host']='git."MySubdomain".duckdns.org';nginx['listen_port']=9080;nginx['listen_https']=false;nginx['hsts_max_age']=0;registry_nginx['listen_port']=9381;registry_nginx['listen_https']=false;registry_nginx['enable']=true;registry['enable']=true;" And I created the file in proxy-confs/gitlab-ce.subdomain.conf with the info that you've provided and I still got this "Not private connection" stuff http://prntscr.com/ln9n0x Am I missing something?
  5. Not really, I've tried everything I now and I could not make this work. My "solution" atm is to only push my changes when I'm inside the local network.
  6. Hello guys! I've been reading this thread in order to figure out how can I setup my GitLab Docker with my letsencrypt docker. Right now my letsencrypt docker is like this : location /gitlab { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.104:9080; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-Ssl on; } and my GitLab docker is like this :http://prntscr.com/l1gatc Extra Parameters: --env GITLAB_OMNIBUS_CONFIG="external_url 'https://"subdomain".duckdns.org/'; nginx['listen_port'] = 9080; nginx['listen_https'] = false" But for some reason, when I try to connect to my gitlab through https://"subdomain".duckdns.org/gitlab it show's me 502 bad gateway error. If someone could help me, I would be very gratefull Also I'm still new to this unraid and docker stuff so please be patient with me.
  7. Hi! I'm trying to make a small game server with a Windows Server 2012 VM. The vm works fine, and I can connect to the game server on my LAN network. But when I try to connect from the outside of my Lan it just doesn't work. What I have done so far: - Opened the right ports, and bound them to the VM IP. (I know they're are fine because I've also opened some ports for some docker stuff and it's working) - Added the ports to the windows firewall as exceptions I've also tried to do this with ubuntu vm for some different game server, but the result was the same. External connections just didn't work at all. Since my docker services are working just fine, I know that my port forwarding is fine. I've been searching for solutions for a few days but with no positive results. Anyway thanks in advance!