diff --git a/src/main/resources/config/application-dev.yml b/src/main/resources/config/application-dev.yml index c1df860..aadec1b 100644 --- a/src/main/resources/config/application-dev.yml +++ b/src/main/resources/config/application-dev.yml @@ -4,6 +4,7 @@ # SERVER server: + domain-name: http://localhost:8080 error: include-exception: true # Include the "exception" attribute. include-stacktrace: always # When to include a "stacktrace" attribute. diff --git a/src/main/resources/config/application-prod.yml b/src/main/resources/config/application-prod.yml index be33fd4..8cff152 100644 --- a/src/main/resources/config/application-prod.yml +++ b/src/main/resources/config/application-prod.yml @@ -4,6 +4,7 @@ # SERVER server: + domain-name: ${SERVER_DOMAIN_NAME} error: include-exception: true # Include the "exception" attribute. include-stacktrace: always # When to include a "stacktrace" attribute.