Skip to content

Commit

Permalink
feat: add proxies to production services for netlify deployments (#34)
Browse files Browse the repository at this point in the history
Sets up proxies to archivista, judge-api, kratos, and login from
netlify deployments to our production instances of these. Eventually we
may need to break these out to short lived versions of the back end
services.

Fixes #33
  • Loading branch information
mikhailswift authored and kriscoleman committed Jun 13, 2023
1 parent e74a8ed commit f498109
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[[redirects]]
from = "/archivista"
to = "https://archivista.testifysec.io"
status = 200
force = true
[[redirects]]
from = "/judge-api"
to = "https://judge-api.testifysec.io"
status = 200
force = true
[[redirects]]
from = "/kratos"
to = "https://kratos.testifysec.io"
status = 200
force = true
[[redirects]]
from = "/login"
to = "https://login.testifysec.io"
status = 200
force = true

0 comments on commit f498109

Please sign in to comment.