Add automation for ADML HTTP image creation
[anna.git] / docker-images / anna-adml-http / etc / nginx / conf.d / default.conf
diff --git a/docker-images/anna-adml-http/etc/nginx/conf.d/default.conf b/docker-images/anna-adml-http/etc/nginx/conf.d/default.conf
new file mode 100644 (file)
index 0000000..0471e4f
--- /dev/null
@@ -0,0 +1,14 @@
+server {
+  listen 8074 http2;
+  listen [::]:8075 http2;
+  #It is possible to enable another port for pure HTTP11:
+  #listen 8073;
+  #listen [::]:8073;
+
+  server_name localhost;
+
+  location / {
+      proxy_pass http://localhost:8000/;
+  }
+}
+