username

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

username's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Thank you for the response. I looked through the documentation and while it is an nginx proxy, the other one allows you to register subdomains on demand when docker files are started by adding the appropriate environmental variables to the docker. The other you sent requires you need to edit the config files by hand, unless I am missing something.
  2. Have you looked at Zuhkov's Guacamole gateway?
  3. I would like to see if anyone can assist me in making an unraid template from jwilder/nginx-proxy. I searched the forum and only found one member mention it. Using this docker image, you can setup your router to forward all inbound port 80/443 traffic from the web to the docker image. The docker image of nginx will read the URL and pass it to the corresponding server in its site list. The site list is dynamically regenerated as you spin up new docker application images such as plex/cp/sab/etc. To register a docker image with the proxy, you add the proper domain name(s) to the parameters of the docker image being launched. It also allows you to register multiple domain names, so you can setup plex.externaldomainname.com and plex.local to point to the same server. Using this setup also allows you to spin up separate instances of the same application. One for external and one for internal. Nginx also supports multiple site specific ssl certs, passwd protection, and more. From here we can then proxy all of Nginx through an application firewall (docker based) for all external trafffic. I would like to learn how to create the unraid templates, but this one seems complex with the way it binds to socks.... This is a combined image of jwilder/docker-gen image and the official nginx image. Jwilder recommends running this as two separate docker images for security, as outlined in the readme. I would prefer using the two image method, but can learn if someone can help me with the "easy" image first.
  4. I would like to add to this request. I actually joined the forum today to make a request similar to what you are trying to do. I would like to request an unraid template be created for jwilder/nginx-proxy. I searched the forum and only found one member mention it but wasn't going to pm him about it. Using this docker image, you can setup your router to forward all inbound port 80/443 traffic from the web to the docker image. The docker image of nginx will read the URL and pass it to the corresponding server in its site list. The site list is dynamically regenerated as you spin up new docker application images such as plex/cp/sab/etc. To register a docker image with the proxy, you add the proper domain name(s) to the parameters of the docker image being launched. It also allows you to register multiple domain names, so you can setup plex.externaldomainname.com and plex.local pointing to the same server. Using this setup also allows you to spin up separate instances of the same application. One for external and one for internal. To complete the circle for public access you setup cname entries on your domain name provider to all point to your dynamically updated address. Nginx also supports multiple ssl certs, passwd protection, and more. You can also proxy all of Nginx through an application firewall (docker based) for all external trafffic. I am still going to post this as a separate request in case this doesn't meet all of your needs. I would like to learn how to create the unraid templates, but this one seems complex with the way it binds to socks....