-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from GDATASoftwareAG/main
Update v29 branch
- Loading branch information
Showing
21 changed files
with
334 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<id>gdatavaas</id> | ||
<name>G DATA Antivirus</name> | ||
<summary>This app provides an additional layer of security to your Nextcloud instance.</summary> | ||
<description><![CDATA[The G DATA Antivirus app is an additional layer of security for your Nextcloud server. Easily scan files for malicious content. | ||
<description><![CDATA[The [G DATA Antivirus app](https://github.com/GDATASoftwareAG/nextcloud-gdata-antivirus) is an additional layer of security for your Nextcloud server. Easily scan files for malicious content. | ||
* 🚀 **Integration with the Flow App!** Use the tags to trigger flows | ||
* ☢️ **Blocks uploads of malicious files!** Prevents the upload of malicious files by scanning them on upload | ||
|
@@ -22,7 +22,7 @@ If you have any questions about scanning, usage or similar, please feel free to | |
]]></description> | ||
<version>0.0.0</version> | ||
<licence>agpl</licence> | ||
<author mail="[email protected]" homepage="https://www.gdata.de/oem/verdict-as-a-service">Lennart Dohmann</author> | ||
<author mail="[email protected]" homepage="https://github.com/GDATASoftwareAG/nextcloud-gdata-antivirus">Lennart Dohmann</author> | ||
<namespace>GDataVaas</namespace> | ||
<category>security</category> | ||
<bugs>https://github.com/GDATASoftwareAG/nextcloud-gdata-antivirus/issues</bugs> | ||
|
@@ -31,7 +31,7 @@ If you have any questions about scanning, usage or similar, please feel free to | |
<screenshot>https://raw.githubusercontent.com/GDATASoftwareAG/nextcloud-gdata-antivirus/main/img/scanned.png</screenshot> | ||
<screenshot>https://raw.githubusercontent.com/GDATASoftwareAG/nextcloud-gdata-antivirus/main/img/context.png</screenshot> | ||
<screenshot>https://raw.githubusercontent.com/GDATASoftwareAG/nextcloud-gdata-antivirus/main/img/settings.png</screenshot> | ||
<website>https://www.gdata.de/business/security-services/verdict-as-a-service</website> | ||
<website>https://github.com/GDATASoftwareAG/nextcloud-gdata-antivirus</website> | ||
<settings> | ||
<admin-section>OCA\GDataVaas\Settings\VaasAdminSection</admin-section> | ||
<admin>OCA\GDataVaas\Settings\VaasAdmin</admin> | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
NEXTCLOUD_VERSION=${NEXTCLOUD_VERSION:-29.0.4} | ||
NEXTCLOUD_VERSION=${1:-29.0.4} | ||
XDEBUG_MODE=${XDEBUG_MODE:-develop} | ||
|
||
source .env-local || echo "No .env-local file found." | ||
|
@@ -57,7 +57,6 @@ docker exec --user www-data -i nextcloud-container php occ config:app:set gdatav | |
docker exec --user www-data -i nextcloud-container php occ config:app:set gdatavaas clientSecret --value="$CLIENT_SECRET" | ||
docker exec --user www-data -i nextcloud-container php occ config:app:set gdatavaas authMethod --value=ClientCredentials | ||
docker exec --user www-data -i nextcloud-container php occ config:app:set gdatavaas autoScanFiles --value=true | ||
docker exec --user www-data -i nextcloud-container php occ config:app:set gdatavaas scanQueueLength --value=100 | ||
|
||
# Configure Nextcloud to send emails | ||
docker exec --user www-data -i nextcloud-container php occ config:app:set gdatavaas notifyMails --value="[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.