summaryrefslogtreecommitdiffstats
path: root/ufo.d/ufoweb.conf
blob: 61a3e305b4da18ec40e79a6a61121ddccafffc43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
rewrite ^/$ http://ufo.kit.edu/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;
}