aboutsummaryrefslogtreecommitdiff
path: root/config/nginx.conf
blob: d2db15e09eeae5e0f52479991b84e25d33b3f0d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {

    location ~ /(login|register|account|launchpad)/ {
        proxy_pass http://styx:5000/;
    }

    location ~ /(oauth2/(auth|revoke|sessions/logout|token)|userinfo|\.well-known/(openid-configuration|jwks\.json))/ {
      proxy_pass http://hydra:5533/;
    }

    location /self-service/ {
      proxy_pass http://kratos:4433;
    }

    root /my/static/site;

}