Files @ 66a55cb17cbf
Branch filter:

Location: light9/bin/homepage

Drew Perttula
notes on pyflame
Ignore-this: c61ea1e1f74d3b44c1d0d6aa4f7d9b09
#!/bin/zsh

CONF=/tmp/light9_nginx.conf
ROOT=`dirname $0`/..
ROOT=${ROOT:a}

bin/homepageConfig > /tmp/light9_nginx_routes.conf && \
cat > $CONF <<EOF
worker_processes 1;

daemon off;
error_log /tmp/light9_homepage.err;
pid /dev/null;

events {
  worker_connections 1024;
}

http {
 include $ROOT/light9/web/mime.types;
 
 server {
  access_log off;
  autoindex on;

  include "/tmp/light9_nginx_routes.conf";

  location / {
    root $ROOT/light9/web;
  }

  location /node_modules {
    root $ROOT/;
  }

 }
}
EOF
head -1 /tmp/light9_nginx_routes.conf
exec /usr/sbin/nginx -c $CONF