From 35f8096a0f61bf7cf17027bf52d996f938041de7 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 10 Mar 2022 01:07:39 +0000 Subject: [PATCH] case 4124 --- docs/8.0/ayanova/docs/ops-notification-system.md | 8 ++++++-- server/AyaNova/models/GlobalOpsNotificationSettings.cs | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/8.0/ayanova/docs/ops-notification-system.md b/docs/8.0/ayanova/docs/ops-notification-system.md index 052e7224..823bd1c3 100644 --- a/docs/8.0/ayanova/docs/ops-notification-system.md +++ b/docs/8.0/ayanova/docs/ops-notification-system.md @@ -72,11 +72,15 @@ Email address format, for example `noreply@example.com` #### AyaNova server URL -The server URL setting is the publicly facing address to connect to the AyaNova server and can not be determined automatically by the AyaNova server. +The server URL setting is the web address location of the AyaNova server web application (where users log in to AyaNova) and can not be determined automatically by the AyaNova server itself. This setting is a very important part of the notification system as it's used by AyaNova to create links sent in notification email messages to allow Users to open the originating AyaNova record or report by clicking on the link in the notification message. -This setting should be the same address used by Users to connect to AyaNova from the AyaNova web application minus any page path. For example if your AyaNova server is accessed by users at `https://ayanova.example.com/login` you would enter `https://ayanova.example.com` as the server URL here. +This setting should be the same address used by Users to connect to AyaNova from the AyaNova web application minus any page path. + +For example if AyaNova login page is accessed by users at `https://ayanova.example.com/login` you would enter `https://ayanova.example.com` as the server URL here. + +Or, for example if your AyaNova login page is accessed by users only internally on your local area network at `http://:192.168.1.22:8964/login` you would enter `http://:192.168.1.22:8964` as the server URL here. ### Menu options diff --git a/server/AyaNova/models/GlobalOpsNotificationSettings.cs b/server/AyaNova/models/GlobalOpsNotificationSettings.cs index 84d95051..fac57668 100644 --- a/server/AyaNova/models/GlobalOpsNotificationSettings.cs +++ b/server/AyaNova/models/GlobalOpsNotificationSettings.cs @@ -36,7 +36,7 @@ namespace AyaNova.Models ConnectionSecurity= NotifyMailSecurity.SSLTLS; SmtpServerPort=587; NotifyFromAddress="noreply@example.com"; - AyaNovaServerURL="https://ayanovaserver.example.com"; + AyaNovaServerURL="https://url_to_my_ayanova_app"; #endif }