diff --git a/dist/assets/lan-install-config.json b/dist/assets/lan-install-config.json index a92829ac..7417fc67 100644 --- a/dist/assets/lan-install-config.json +++ b/dist/assets/lan-install-config.json @@ -3,8 +3,9 @@ "AYANOVA_DB_CONNECTION":"Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;CommandTimeout=300;", "AYANOVA_DEFAULT_TRANSLATION":"en", "AYANOVA_DATA_PATH":"%ProgramData%\\ayanova", - "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin", - "AYANOVA_LOG_LEVEL": "Info" + "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin", + "AYANOVA_LOG_LEVEL": "Info", + "AYANOVA_JWT_SECRET": "11111YourRandom32CharacterSecret" } diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index 6c06c7f0..aaa12b77 100644 --- a/dist/install/windows/x64/lan.iss +++ b/dist/install/windows/x64/lan.iss @@ -43,13 +43,16 @@ Source: "C:\data\code\raven\dist\assets\open-ayanova-app.bat"; DestDir: "{app}"; [Dirs] -Name: "{app}\.local-chromium";Permissions: users-modify;Flags: uninsalwaysuninstall +Name: "{app}";Permissions: users-modify; +Name: "{app}\Chrome";Permissions: users-modify;Flags: uninsalwaysuninstall +Name: "{app}\ChromeHeadlessShell";Permissions: users-modify;Flags: uninsalwaysuninstall Name: "{commonappdata}\ayanova";Permissions: users-modify; Name: "{commonappdata}\ayanova\logs";Permissions: users-modify; [UninstallDelete] -Type: filesandordirs; Name: "{app}\.local-chromium\*" +Type: filesandordirs; Name: "{app}\Chrome\*" +Type: filesandordirs; Name: "{app}\ChromeHeadlessShell\*" [Icons] Name: "{autoprograms}\AyaNova server\{#MyAppName}"; Filename: "{app}\AyaNova.exe";IconFilename: "{app}\AyaNova.exe"; diff --git a/docs/8.0/ayanova/docs/ops-config-backup-pgdump-path.md b/docs/8.0/ayanova/docs/ops-config-backup-pgdump-path.md index 9e187bd4..b749c916 100644 --- a/docs/8.0/ayanova/docs/ops-config-backup-pgdump-path.md +++ b/docs/8.0/ayanova/docs/ops-config-backup-pgdump-path.md @@ -21,7 +21,7 @@ Example LINUX config.json entry ```json { ...other properties... - "AYANOVA_BACKUP_PG_DUMP_PATH": "/usr/lib/postgresql/14.1/bin/" + "AYANOVA_BACKUP_PG_DUMP_PATH": "/usr/lib/postgresql/16.3/bin/" } ``` @@ -31,20 +31,20 @@ Example WINDOWS config.json entry ```json { ...other properties... - "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin" + "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin" } ``` Example command line parameter -`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real) +`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/16.3/bin/"` (not real) Example environment variable Windows -`set "AYANOVA_BACKUP_PG_DUMP_PATH=C:\Program Files\PostgreSQL\14\bin"` (not real) +`set "AYANOVA_BACKUP_PG_DUMP_PATH=C:\Program Files\PostgreSQL\16\bin"` (not real) Linux -`export AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real) +`export AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/16.3/bin/"` (not real) diff --git a/docs/8.0/ayanova/docs/ops-install-windows-iis.md b/docs/8.0/ayanova/docs/ops-install-windows-iis.md index 50095569..ef688614 100644 --- a/docs/8.0/ayanova/docs/ops-install-windows-iis.md +++ b/docs/8.0/ayanova/docs/ops-install-windows-iis.md @@ -111,7 +111,7 @@ The ASP.NET Core runtime will see IIS and install appropriate components but onl AyaNova is built upon the ASP.NET Core runtime version 8.x.x and it should be present **before** AyaNova is installed. -**Warning** Microsoft provides several different links to asp.net core downloads; the one you **must** choose is the link labelled "Hosting bundle". +**Warning** Microsoft provides several different links to asp.net core downloads; the one you **must** choose is the link labelled "Hosting bundle" and it is in the runtimes section under Windows. Download the ASP.NET Core **Hosting bundle** runtime here [https://dotnet.microsoft.com/en-us/download/dotnet/8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). @@ -196,7 +196,7 @@ The default installed `config.json` file will initially have the following: "AYANOVA_USE_URLS": "http://*:7575", "AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;", "AYANOVA_DEFAULT_TRANSLATION": "en", - "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin", + "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin", "AYANOVA_DATA_PATH": "%ProgramData%\\ayanova", "AYANOVA_LOG_LEVEL": "Info" } diff --git a/docs/8.0/ayanova/docs/ops-install-windows-lan.md b/docs/8.0/ayanova/docs/ops-install-windows-lan.md index a660bbf6..fbe0f047 100644 --- a/docs/8.0/ayanova/docs/ops-install-windows-lan.md +++ b/docs/8.0/ayanova/docs/ops-install-windows-lan.md @@ -128,7 +128,7 @@ The default installed `config.json` file will initially have the following: "AYANOVA_USE_URLS": "http://*:7575", "AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;", "AYANOVA_DEFAULT_TRANSLATION": "en", - "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin", + "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin", "AYANOVA_DATA_PATH": "%ProgramData%\\ayanova", "AYANOVA_LOG_LEVEL": "Info" }