initial checkin of uwsgi and nginx conf files
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 20 May 2014 20:28:16 +0000 (16:28 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 20 May 2014 20:28:16 +0000 (16:28 -0400)
planetstack/nginx/planetstack.conf [new file with mode: 0644]

diff --git a/planetstack/nginx/planetstack.conf b/planetstack/nginx/planetstack.conf
new file mode 100644 (file)
index 0000000..d25ab0b
--- /dev/null
@@ -0,0 +1,22 @@
+upstream backend {
+  # least_conn;   
+  server 127.0.0.1:9001;
+  server unix:/var/run/planetstack.uwsgi.sock;
+}
+
+
+server {
+    listen 8081;
+    server_name 128.112.139.48;
+
+    location /static/ {
+        alias /opt/planetstack/core/static/;
+        expires 30d;
+        access_log off;
+    }
+
+    location / {
+        include /etc/nginx/uwsgi_params;
+        uwsgi_pass backend;
+    }
+}