14 lines
317 B
Plaintext
14 lines
317 B
Plaintext
# PRODUCTION -- pre-built source
|
|
location /identities/api/v1/ {
|
|
rewrite ^/identities/api/v1/(.*)$ /api/v1/$1 break;
|
|
proxy_pass http://localhost/;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /identities {
|
|
try_files $uri $uri/ =404;
|
|
alias /website/client/build;
|
|
index index.html;
|
|
}
|