nomad

HCL and Docker files for Nomad deployments
git clone https://git.in0rdr.ch/nomad.git
Log | Files | Refs | Pull requests

nginx.conf.tmpl (294B)


      1 server {
      2     listen               {{ env "NOMAD_PORT_https" }} ssl;
      3 
      4     ssl_certificate      /etc/letsencrypt/live/p0c.ch/fullchain.pem;
      5     ssl_certificate_key  /etc/letsencrypt/live/p0c.ch/privkey.pem;
      6 
      7     location / {
      8         proxy_pass       http://{{ env "NOMAD_ADDR_jekyll" }};
      9     }
     10 }