nomad

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

nginx.conf.tmpl (824B)


      1 # https://man.sr.ht/configuration.md
      2 # https://git.sr.ht/~sircmpwn/sr.ht-nginx/tree/master/item/todo.sr.ht.conf
      3 
      4 server {
      5     listen               {{ env "NOMAD_PORT_https" }} ssl;
      6 
      7     ssl_certificate      /etc/letsencrypt/live/todo.p0c.ch/fullchain.pem;
      8     ssl_certificate_key  /etc/letsencrypt/live/todo.p0c.ch/privkey.pem;
      9 
     10     location / {
     11         # https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html#putting-behind-a-full-webserver
     12         include          uwsgi_params;
     13         uwsgi_pass       {{ env "NOMAD_ADDR_web" }};
     14     }
     15 
     16     location /query {
     17         # the API is a binary, no uwsgi app
     18         proxy_pass       http://{{ env "NOMAD_ADDR_api" }};
     19     }
     20 
     21     location /static {
     22         # static assets are served from the allocations ephemeral disk
     23         root             /alloc/data;
     24     }
     25 }