Skip to content

Commit

Permalink
fix: update demo server URLs to 'checkmate-demo.bluewavelabs.ca'
Browse files Browse the repository at this point in the history
  • Loading branch information
mertssmnoglu committed Dec 11, 2024
1 parent 76d0d1b commit b41fe1e
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Docker/dist/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ server {
listen 80;
listen [::]:80;

server_name uptime-demo.bluewavelabs.ca;
server_name checkmate-demo.bluewavelabs.ca;
server_tokens off;

location /.well-known/acme-challenge/ {
Expand Down
2 changes: 1 addition & 1 deletion Docker/test/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
client:
image: uptime_client:latest
environment:
UPTIME_APP_API_BASE_URL: "https://uptime-demo.bluewavelabs.ca/api/v1"
UPTIME_APP_API_BASE_URL: "https://checkmate-demo.bluewavelabs.ca/api/v1"
ports:
- "80:80"
- "443:443"
Expand Down
2 changes: 1 addition & 1 deletion Docker/test/prod/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
client:
image: uptime_client:latest
environment:
UPTIME_APP_API_BASE_URL: "https://uptime-demo.bluewavelabs.ca/api/v1"
UPTIME_APP_API_BASE_URL: "https://checkmate-demo.bluewavelabs.ca/api/v1"
ports:
- "80:80"
- "443:443"
Expand Down
8 changes: 4 additions & 4 deletions Docker/test/prod/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ server {
listen 80;
listen [::]:80;

server_name uptime-demo.bluewavelabs.ca;
server_name checkmate-demo.bluewavelabs.ca;
server_tokens off;

location /.well-known/acme-challenge/ {
Expand Down Expand Up @@ -38,10 +38,10 @@ server {
listen 443 default_server ssl http2;
listen [::]:443 ssl http2;

server_name uptime-demo.bluewavelabs.ca;
server_name checkmate-demo.bluewavelabs.ca;

ssl_certificate /etc/nginx/ssl/live/uptime-demo.bluewavelabs.ca/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/live/uptime-demo.bluewavelabs.ca/privkey.pem;
ssl_certificate /etc/nginx/ssl/live/checkmate-demo.bluewavelabs.ca/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/live/checkmate-demo.bluewavelabs.ca/privkey.pem;

location / {
root /usr/share/nginx/html;
Expand Down
2 changes: 1 addition & 1 deletion Server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
},
{
"url": "https://uptime-demo.bluewavelabs.ca/{API_PATH}",
"url": "https://checkmate-demo.bluewavelabs.ca/{API_PATH}",
"description": "Bluewave Demo Server",
"variables": {
"PORT": {
Expand Down
2 changes: 1 addition & 1 deletion guides/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ It regularly checks whether a server/website is accessible and performs optimall

## Demo

We have a [demo](https://uptime-demo.bluewavelabs.ca/) where you can test how the Uptime Manager works. The username is [[email protected]](mailto:[email protected]) and the password is Demouser1!
We have a [demo](https://checkmate-demo.bluewavelabs.ca/) where you can test how the Uptime Manager works. The username is [[email protected]](mailto:[email protected]) and the password is Demouser1!

## Questions & ideas

Expand Down
2 changes: 1 addition & 1 deletion guides/developers-guide/general-project-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ When making changes to the Front end please always keep future developers in min

### Back end

The back end of this project is not especially complex and is built around Express. The back end is a RESTful API and the [documentation can be found here](https://uptime-demo.bluewavelabs.ca/api-docs).
The back end of this project is not especially complex and is built around Express. The back end is a RESTful API and the [documentation can be found here](https://checkmate-demo.bluewavelabs.ca/api-docs).

The application consists of several main conceptual models:

Expand Down
2 changes: 1 addition & 1 deletion guides/users-guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Our API is documented in accordance with the [OpenAPI spec](https://www.openapis

You can see the documentation on your local development server at http://localhost:{port}/api-docs

You can also view the documentation on our demo server at [https://uptime-demo.bluewavelabs.ca/api-docs](https://uptime-demo.bluewavelabs.ca/api-docs)
You can also view the documentation on our demo server at [https://checkmate-demo.bluewavelabs.ca/api-docs](https://checkmate-demo.bluewavelabs.ca/api-docs)

### Error handling

Expand Down

0 comments on commit b41fe1e

Please sign in to comment.