Skip to content

Commit

Permalink
URL Router fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dashrath-chauhan committed Sep 10, 2024
1 parent ab9c47f commit 80624e7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
REACT_APP_DEPLOYMENT_ENV=Development
REACT_APP_TESTBED_API_BASE_URL=https://testbed-api.staging.ga4gh.org
REACT_APP_TESTBED_API_BASE_PORT=4500
REACT_APP_PORT=3000
REACT_APP_TESTBED_API_BASE_URL=http://localhost
REACT_APP_TESTBED_API_BASE_PORT=4500
2 changes: 1 addition & 1 deletion ci/set-docker-image-version.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export DOCKER_IMG_VER=0.2.0
export DOCKER_IMG_VER=0.2.3-dev
16 changes: 16 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
server {
listen 80;
server_name dev-testbed.ga4gh.org;

root /usr/share/nginx/html;
index index.html;

location / {
try_files $uri /index.html;
}

error_page 404 /index.html;
location = /index.html {
allow all;
}
}

0 comments on commit 80624e7

Please sign in to comment.