Skip to content

Commit

Permalink
Merge pull request #487 from TAMULib/465-auth-url
Browse files Browse the repository at this point in the history
Update auth URL in DEPLOYING.md
  • Loading branch information
kaladay authored Jan 10, 2023
2 parents b369669 + 6f2f56f commit 675ef1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DEPLOYING.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ The `.wvr/build-config.js` file has only a single section of interest and might
return content
.toString()
.replace('${AUTH_STRATEGY}', 'weaverAuth')
.replace('${AUTH_SERVICE_URL}', 'https://labs.library.tamu.edu/authfix')
.replace('${AUTH_SERVICE_URL}', 'https://labs.library.tamu.edu/auth/2x')
.replace('${STOMP_DEBUG}', 'false')
.replace('${AVALON_URL}', 'avalon-pre.library.tamu.edu:443');
},
},
```

In the above example snippet, only the lines containing `'${AUTH_STRATEGY}'`, `'${AUTH_SERVICE_URL}'`, `'${STOMP_DEBUG}'`, and `'${AVALON_URL}'` should be changed.
For example `'https://labs.library.tamu.edu/authfix'` could be changed to `'https://labs.library.tamu.edu:8443/authfix'` (changing the port number from 443 to 8443).
For example `'https://labs.library.tamu.edu/auth/2x'` could be changed to `'https://labs.library.tamu.edu:8443/auth/2x'` (changing the port number from 443 to 8443).

Once this is done all of the steps from *Development Deployment using NPM and Maven* above can be followed.

Expand Down

0 comments on commit 675ef1a

Please sign in to comment.