Skip to content

LibreCodeCoop/nginx-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Official documentation

Read https:/nginx-proxy/nginx-proxy and https:/nginx-proxy/docker-letsencrypt-nginx-proxy-companion/

What is it for

Docker environments where all services are on a single host machine. Managed based on environment variables in each service for proxy configuration.

Installation

git clone https:/LibreCodeCoop/nginx-proxy ~/projects/nginx-proxy
  • Create an external network to plug services that you need to receive a request from proxy
docker network create reverse-proxy
  • Launch the application
cd ~/projects/nginx-proxy
docker compose up -d

Backup

  • You only need to back up the volumes because they contain the SSL certificates of the subdomains

Update

  • Go to the nginx-proxy folder which should be in ~/projects/nginx-proxy
  • Run the git status command to see if there were any changes, evaluate if you can discard or if you need to save the change if there were any
  • Update the main project
git pull origin master
  • Update the images
docker compose pull
  • Raise the containers
docker compose up -d

Service setup

A service setup may require specific configurations, for example if the service runs on a different port or has a different protocol. In these cases, see the nginx-proxy documentation.

In subdomains

  • You will need to add at least these environments to the server:
VIRTUAL_HOST=
LETSENCRYPT_HOST=
LETSENCRYPT_EMAIL=

In subdomains and paths

proxy_set_header X-Script-Name /pgadmin;
proxy_set_header Host $host;

Releases

No releases published

Packages

No packages published