summaryrefslogtreecommitdiffstats
path: root/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r--nginx/nginx.conf30
1 files changed, 30 insertions, 0 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
new file mode 100644
index 0000000..363e205
--- /dev/null
+++ b/nginx/nginx.conf
@@ -0,0 +1,30 @@
+#user nginx;
+worker_processes 1;
+
+error_log logs/error.log;
+error_log logs/error.log notice;
+error_log logs/error.log info;
+
+pid nginx.pid;
+
+
+events {
+ worker_connections 4096;
+}
+
+
+http {
+
+ server {
+ listen 8085;
+ server_name localhost;
+ charset utf-8r;
+
+ location / {
+ include uwsgi_params;
+ uwsgi_pass unix:/run/uwsgi/tosca.sock;
+
+ }
+ }
+
+}