summaryrefslogtreecommitdiffstats
path: root/ufo.d
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-10-11 14:52:38 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-10-11 14:52:38 +0200
commit64ce83b06744bc7280db6a9fb05680c7673776ae (patch)
treee19eff64f8dd410fa6d1a89a01b6fd9707193692 /ufo.d
parenteed898a473b73d87d2d50ffdaa9c6eeb43748f69 (diff)
downloadiperouter-64ce83b06744bc7280db6a9fb05680c7673776ae.tar.gz
iperouter-64ce83b06744bc7280db6a9fb05680c7673776ae.tar.bz2
iperouter-64ce83b06744bc7280db6a9fb05680c7673776ae.tar.xz
iperouter-64ce83b06744bc7280db6a9fb05680c7673776ae.zip
UFO web site fixes and few redirects for BORA stuff
Diffstat (limited to 'ufo.d')
-rw-r--r--ufo.d/ufoweb.conf19
1 files changed, 18 insertions, 1 deletions
diff --git a/ufo.d/ufoweb.conf b/ufo.d/ufoweb.conf
index 5a134a2..61a3e30 100644
--- a/ufo.d/ufoweb.conf
+++ b/ufo.d/ufoweb.conf
@@ -1,9 +1,26 @@
rewrite ^/$ http://ufo.kit.edu/dis/;
-location /dis {
+location /dis/ {
proxy_pass https://192.168.26.211/dis/;
+ proxy_pass_header Set-Cookie;
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+
+ client_max_body_size 128m;
+}
+
+# Actual error is in the UFO web site. Should be fixed on KaaS
+location /dis/index.php/ufo/ {
+ proxy_pass https://192.168.26.211/dis/index.php/project/;
+ proxy_pass_header Set-Cookie;
+
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
+
+ client_max_body_size 128m;
}