Skip to content
nginx.conf 226 B
Newer Older
Bengfort's avatar
Bengfort committed
server {
  listen *:80;

  location / {
    include /etc/nginx/uwsgi_params;
    uwsgi_pass castellum_core;
  }

  location /static {
    alias /static;
    autoindex off;
  }
}

upstream castellum_core {
  server web:9000;
}