summaryrefslogtreecommitdiff
path: root/historic/docker/nginx/proxy.conf
diff options
context:
space:
mode:
Diffstat (limited to 'historic/docker/nginx/proxy.conf')
-rw-r--r--historic/docker/nginx/proxy.conf14
1 files changed, 14 insertions, 0 deletions
diff --git a/historic/docker/nginx/proxy.conf b/historic/docker/nginx/proxy.conf
new file mode 100644
index 0000000..b4bf54a
--- /dev/null
+++ b/historic/docker/nginx/proxy.conf
@@ -0,0 +1,14 @@
+server {
+ listen *:80;
+ root /dev/null;
+
+ location / {
+ autoindex off;
+ proxy_pass http://exchange:8081;
+ }
+
+ location /admin {
+ autoindex off;
+ proxy_pass http://exchange:18080;
+ }
+}