Git Product home page Git Product logo

nginx-certbot-np's Introduction

Run nginx and Certbot with a non-privileged user

This repository creates a Docker image for a nginx server with Certbot. All the processes are run as a non-privileged user (nginx).

The image is based on the official nginx non-privileged image, nginxinc/nginx-unprivileged. During the build process, the Certbot is installed and the necessary scripts are added to the image.

Image

galacsh/nginx-certbot-np

docker pull galacsh/nginx-certbot-np

Supported architectures

Even nginx supports many architectures, Certbot only supports the following architectures. So, this image is only available for the following architectures.

  • linux/amd64
  • linux/arm64
  • linux/arm/v6

Structure

  • conf.d/http-default.conf: Default config file to handle http requests.
    • HTTP to HTTPS redirection
    • Location for ACME challenge
  • scripts/: Shell scripts to the nginx server and SSL certificates.
    • setup-dhparam.sh: Generate DH parameters if they do not exist.
    • obtain-cert.sh: Obtain the SSL certificates if they do not exist.
    • renew-cert.sh: Tries to renew the SSL certificates every RETRY_INTERVAL seconds.
    • reload-nginx.sh: Reloads the nginx server after the SSL certificates have been renewed.
  • entrypoint.sh: Entrypoint script for the Docker container.
  • Dockerfile: The Dockerfile for the image.
  • .env: Environment variables for the Docker Compose configuration.

scripts/

setup-dhparam.sh

The script tries to generate DH parameters for each domain if it doesn't exist.

  1. Check if already exists.
  2. If the certificates do not exist, try to generate one.

Note that the generated file will be placed in /etc/letsencrypt/live/${YOUR_DOMAIN}/ssl-dhparam.pem.

obtain-cert.sh

The script tries to obtain the SSL certificates if they do not exist.

  1. Check if the SSL certificates exist.
  2. If the certificates do not exist, try to obtain them.
  3. Obtaining the certificates is done by running the Certbot in webroot mode. (--webroot -w /acme-challenge)

Note that /acme-challenge is the directory inside container where the Certbot will write the challenge files. Your nginx configuration doesn't need to handle this. conf.d/http-default.conf handles this and it's already copied to the image.

Note

In development mode (MODE=dev), this doesn't try to obtain the SSL certificates.

renew-cert.sh

The script tries to renew the SSL certificates every RETRY_INTERVAL seconds. Since the loop inside the script starts with a sleep, renewal will not happen immediately after the container starts.

Note

In development mode (MODE=dev) this doesn't try to renew the SSL certificates.

reload-nginx.sh

This script is a --deploy-hook for Certbot. It reloads the nginx server after the SSL certificates have been renewed.

entrypoint.sh

The entrypoint script is the main script that is run when the Docker container starts.

  1. The script runs /docker-entrypoint.sh from the nginx image to initialize and start the nginx server.
  2. Try to obtain the SSL certificates.
  3. Schedule the renewal of the SSL certificates in the background.
  4. Make the nginx process the PID 1. (Restarts the nginx server)

Dockerfile

The Dockerfile is based on the official nginx non-privileged image, nginxinc/nginx-unprivileged. During the build process, the Certbot is installed and the necessary scripts are added to the image.

Since this image's entrypoint is just a wrapper of base image's /docker-entrypoint.sh, you can use the same CMD as the base image (nginx).

Base image:

ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]

This image:

ENTRYPOINT ["/entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]

Environment Variables

  • MODE: Set the mode of the container. (specify MODE=prod in .env.local)
  • DOMAINS
    • Set the domain names for the SSL certificates.
    • Use comma (,) to separate the domain names.
    • Use space ( ) to separate the sets of domain names.
    • Base domain name should be the first element.
    • e.g. DOMAINS="example.com,www.example.com example.net,www.example.net"
  • EMAIL: Set the email address for the SSL certificates.
  • RETRY_INTERVAL (Optional): Set the interval at which the SSL certificates are renewed. (in seconds)

Usage

Run

This is an example of running the container with the docker compose up command.

Let's say we are configuring 2 domains, example.com and example.net. Create config template files for those two domains.

# templates/example.com.conf.template

server {
    server_name ${EXAMPLE_COM};
    listen      443 ssl;
    listen      [::]:443 ssl;

    # Certificate
    ssl_certificate /etc/letsencrypt/live/${EXAMPLE_COM}/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/${EXAMPLE_COM}/privkey.pem;
    ssl_dhparam /etc/letsencrypt/live/${EXAMPLE_COM}/ssl-dhparam.pem;
    include /etc/letsencrypt/options-ssl-nginx.conf;

    location / {
        root   /usr/share/nginx/html/${EXAMPLE_COM};
        index  index.html;
        try_files $uri $uri/ /index.html;
    }
}
# templates/example.net.conf.template

server {
    server_name ${EXAMPLE_NET};
    listen      443 ssl;
    listen      [::]:443 ssl;

    # Certificate
    ssl_certificate /etc/letsencrypt/live/${EXAMPLE_NET}/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/${EXAMPLE_NET}/privkey.pem;
    ssl_dhparam /etc/letsencrypt/live/${EXAMPLE_NET}/ssl-dhparam.pem;
    include /etc/letsencrypt/options-ssl-nginx.conf;

    location / {
        root   /usr/share/nginx/html/${EXAMPLE_NET};
        index  index.html;
        try_files $uri $uri/ /index.html;
    }
}

Create .env.

MODE=prod

DOMAINS=example.com example.net
[email protected]

# For nginx config templates
EXAMPLE_COM=example.com
EXAMPLE_NET=example.net

Create compose.yaml.

services:
  app:
    image: galacsh/nginx-certbot-np:latest
    container_name: nginx
    restart: always
    volumes:
      - etc-letsencrypt:/etc/letsencrypt
      - lib-letsencrypt:/var/lib/letsencrypt
      - ./templates:/etc/nginx/templates
      - ./html:/usr/share/nginx/html
    ports:
      - 80:80
    env_file:
      - .env

volumes:
  etc-letsencrypt:
  lib-letsencrypt:

Now, you can run and see logs.

docker compose up -d
docker compose logs -f

Stop

docker compose down

Build & Push the Image

git commit -m "commit message should contain something like v1.0.1"
./build.sh

nginx-certbot-np's People

Contributors

galacsh avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.