Skip to content

Commit

Permalink
NOISSUE - Update deployments URL (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: sammy <sammyoina@gmail.com>
  • Loading branch information
SammyOina committed Jan 25, 2024
1 parent 1175976 commit e42d1e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GOARCH ?= amd64
VERSION ?= $(shell git describe --abbrev=0 --tags 2>/dev/null || echo "0.13.0")
COMMIT ?= $(shell git rev-parse HEAD)
TIME ?= $(shell date +%F_%T)
DOMAIN ?= callhome.magistrala.com
DOMAIN ?= deployments.magistrala.abstractmachines.fr

all: $(PROGRAM)

Expand Down
2 changes: 1 addition & 1 deletion docker/certbot/init-letsencrypt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if ! [ -x "$(command -v docker compose)" ]; then
exit 1
fi

domains=(deployments.magistrala.io)
domains=(deployments.magistrala.abstractmachines.fr)
rsa_key_size=4096
data_path="./certbot"
email="infos@abstractmachines.fr"
Expand Down
4 changes: 2 additions & 2 deletions docker/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ http{
location / {
proxy_pass http://callhome_server;
}
ssl_certificate /etc/letsencrypt/live/deployments.magistrala.io/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/deployments.magistrala.io/privkey.pem;
ssl_certificate /etc/letsencrypt/live/deployments.magistrala.abstractmachines.fr/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/deployments.magistrala.abstractmachines.fr/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}
Expand Down

0 comments on commit e42d1e3

Please sign in to comment.