Giter Club home page Giter Club logo

vps's Introduction

vps ๐Ÿ’พ

Provision the instance

Copy the example environment file and modify the VPS Provisioning configs.

cp .env.example .env

One-time setup

make bootstrap
  • Generate an SSH key pair
  • Create the main user
  • Set up firewall rules
  • Change the root password
  • Disable root login

Idempotent provisioning steps

make provision
  • Install: virtualenv, Docker, AWS CLI, make
  • Allow 80/TCP connections

Run shared services

Update the Docker Services configs in .env, where ENVIRONMENT can be dev (local machine) or prod.

make start
  • Create the tifa network
  • Run the Traefik reverse proxy
  • Run a MySQL instance
  • Run a phpMyAdmin instance

In the development environment, a certificate is created at ./assets/traefik/certs/dev.crt. On macOS it is added to the system's trusted SSL certificates.

Add a new service

In this repo

Add a new hostname in the .env file and restart services.

make restart

In that service

Add the following labels and proxy network to service:

  myservice:
    image: myimage
    labels:
      traefik.enable: true
      traefik.http.routers.<ROUTER_KEY>.rule: Host(`${HOSTNAME:-}`)
      traefik.http.routers.<ROUTER_KEY>.entrypoints: <ENTRYPOINT>
    networks:
      - tifa

Each service needs to have a unique ROUTER_KEY.

Currently supported entrypoints:

Entrypoint Port
web 80
websecure 443
mysql 3306

For websecure HTTPS connections, enable TLS.

      traefik.http.routers.<ROUTER_KEY>.tls.certresolver: letsencrypt

Finally, define the external network at the top level.

networks:
  proxy:
    external: true

vps's People

Contributors

tifa avatar

Watchers

 avatar  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.