Skip to content

37th Week of 2021

Computer Science

GNULinux

(../computer_science/gnu_linux/docker.md)

  • Reorganization: Re-organized sections.
  • New: Build an image from a git repository.

    docker build -t tag https://github.com/docker/rootfs.git#
    

(../computer_science/gnu_linux/nginx.md)

  • New: Reverse proxy.

    location /something/ {
        proxy_pass http://127.0.0.1:8000/;  # note the trailing slash here, it matters!
    }