computer_science:docker:docker_nginx_reverse_proxy

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computer_science:docker:docker_nginx_reverse_proxy [2020/07/30 09:29] carlossousacomputer_science:docker:docker_nginx_reverse_proxy [2023/12/01 12:07] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Nginx as Reverse Proxy for Docker Containers ====== ====== Nginx as Reverse Proxy for Docker Containers ======
 +
 +**Important Notice:**
 +
 +This is an example for a Reverse Proxy. I will be using Traefik to [[:computer_science:docker:traefik_docker_https_ssl_for_containers|Implementing HTTPS / SSL with Traefik on Docker Containers]] down the line. So use this guide if you want to keep to nginx, else I would recommend going with Traefik.
 +
 +----
  
 My setup for the docker env. is the same as described on [[:computer_science:docker:docker_dokuwiki_portable|my DokuWiki Docker Container Portable]], even though this should have almost zero effect even if the system is different (yay, docker!). My setup for the docker env. is the same as described on [[:computer_science:docker:docker_dokuwiki_portable|my DokuWiki Docker Container Portable]], even though this should have almost zero effect even if the system is different (yay, docker!).
Line 20: Line 26:
   - A Nginx config   - A Nginx config
  
-===== Sample Nginx Reverse Proxy configuration =====+===== Sample Nginx Reverse Proxy - nginx.conf - configuration =====
  
-A sample nginx reverse proxy setup would like something like this:+A sample nginx reverse proxy config file - nginx.conf - would like something like this:
  
 <code bash> <code bash>
Line 58: Line 64:
 </code> </code>
  
-===== A Nginx Reverse-Proxy sample docker-compose.yml would be something like: =====+===== A Nginx Reverse-Proxy sample docker-compose.yml ===== 
 + 
 +would be something like:
  
 <code bash> <code bash>
Line 98: Line 106:
 ===== Pratical Example ===== ===== Pratical Example =====
  
-So a sample docker-compose.yml for the Nginx Reverse Proxy using my DokuWiki would be something like:+==== Making the Reverse Proxy ==== 
 + 
 +Let's go ahead and create our folder and create our 2 required files, the docker-compose.yml and the nginx.conf. Navigate to your desired folder and run: 
 + 
 +<code bash> 
 +mkdir nging-reverseproxy 
 +touch docker-compose.yml 
 +touch nginx.conf 
 + 
 + 
 +</code> 
 + 
 +Using your favourite method, deploy your **docker-compose.yml **setup. I will be using the good old 'nano'
 + 
 +My configuration would be as follows:
  
 <code bash> <code bash>
Line 131: Line 153:
         container_name: 'dokuwiki_zebra'         container_name: 'dokuwiki_zebra'
         expose:         expose:
-          - '80'+            - '80'
         volumes:         volumes:
             - dokuwiki_data:/dokuwiki/data             - dokuwiki_data:/dokuwiki/data
Line 138: Line 160:
             - dokuwiki_lib-tpl:/dokuwiki/lib/tpl             - dokuwiki_lib-tpl:/dokuwiki/lib/tpl
             - dokuwiki_logs:/var/log             - dokuwiki_logs:/var/log
 +
 +
 +</code>
 +
 +And now we edit the **nginx.conf **to point back to our DokuWiki. Note that I will already configure a sub-domain and a main domain, which at the moment would both point to the same container, but once we make [[:computer_science:docker:docker_wordpress_homepage_portable|Wordpress Homepage ToGo with Docker]] we can change just the service name and everything should work properly.
 +
 +<code bash>
 +events {
 +
 +}
 +
 +http {
 +  #error_log /etc/nginx/error_log.log warn;
 +  client_max_body_size 20m;
 +
 +  proxy_cache_path /etc/nginx/cache keys_zone=one:500m max_size=1000m;
 +
 +  server {
 +    server_name wiki.carlossousa.tech;
 +
 +    location / {
 +      include /etc/nginx/includes/proxy.conf;
 +      proxy_pass http://dokuwiki:80/;
 +    }
 +  }
 +
 +  server {
 +    server_name carlossousa.tech;
 +
 +    location / {
 +      include /etc/nginx/includes/proxy.conf;
 +      proxy_pass http://dokuwiki:80/;
 +    }
 +  }
 +}
 +
 +
 +</code>
 +
 +And finally we will once again create a **backup_to_tar.sh **so we can backup our nginx Reverse Proxy setup:
 +
 +<code bash>
 +#!/bin/bash
 +SOURCE_PATH="/home/docker-user/nginx-reverseproxy"
 +BACKUP_PATH="/home/docker-user/backups"
 +BACKUP_NAME="nginx-reverseproxy"
 +tar cvf "$BACKUP_PATH"/"$BACKUP_NAME"-$(date +"%Y-%m-%d-%H-%M").tar -C "$SOURCE_PATH" .
 +
  
 </code> </code>
  
  
  • computer_science/docker/docker_nginx_reverse_proxy.1596101379.txt.gz
  • Last modified: 2023/12/01 12:07
  • (external edit)