Guest User

Untitled

a guest
May 7th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. ![](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_small.png)
  2.  
  3. # How to use these Reverse Proxy Configs
  4.  
  5. This folder contains sample reverse proxy configs for various docker images linuxserver provides and other commonly used applications.
  6.  
  7. They are grouped in two:
  8.  
  9. 1. `subfolder` these will allow accessing services at https://yourdomain.com/servicename
  10. 2. `subdomain` these will allow accessing services at https://servicename.yourdomain.com
  11.  
  12. ## To enable the reverse proxy configs:
  13.  
  14. ### Configure your default site config
  15.  
  16. Make sure that your default site config contains the following lines in the appropriate spots as seen in the default version:
  17.  
  18. 1) For subfolder methods: `include /config/nginx/proxy-confs/*.subfolder.conf;`
  19. 2) For subdomain methods: `include /config/nginx/proxy-confs/*.subdomain.conf;`
  20.  
  21. ### Ensure you have a custom docker network
  22.  
  23. These confs assume that the letsencrypt container can reach other containers via their dns hostnames (defaults to container name) resolved via docker's internal dns. This is achieved through having the containers attached to the same user defined docker bridge network.
  24.  
  25. - If you are using docker-compose and the containers are managed through the same yaml file, docker-compose will automatically create a custom network and attach all containers to it. Nothing extra is required.
  26.  
  27. - If you are starting the containers via command line, first create a bridge network with the command `docker network create [networkname]` Then define that network in the container run/create command via `--network [networkname]`.
  28.  
  29. - If you are using a gui manager like portainer, you can create a custom bridge network in the gui, and select it when creating a new container.
  30.  
  31. - If you are using unraid, create a custom network in command line via `docker network create [networkname]`, then go to docker service settings (under advanced) and set the option `Preserve user defined networks:` to `Yes`. Then in each container setting, including the LetsEncrypt container, in the network type dropdown, select `Custom : [networkname]`. This is a necessary step as the bridge network that unraid uses by default does not allow container to container communication.
  32.  
  33. If the reverse proxied containers are not reachable via dns or they are running on a different machine, you will have to modify these confs to fit your needs.
  34.  
  35. ### Rename the required proxy configs
  36.  
  37. 1) Rename the conf files and remove the `.sample` at the end (ie. `sonarr.subfolder.conf`)
  38. 2) Restart the letsencrypt container
  39.  
  40. ### Make any necessary changes detailed in the config
  41.  
  42. Some applications require you to make changes to the service containers such as adding base urls in their settings. Each conf file lists the required changes on the first line.
  43.  
  44. If you are reverse proxying linuxserver containers installed on the same host with the recommended options, you shouldn't need to edit these conf files.
  45.  
  46. ## To disable the configs:
  47.  
  48. Simply delete the confs and restart letsencrypt.
Add Comment
Please, Sign In to add comment