I’m running groupdocs in our custom infrastructure as well as with docker in the local environment.
On the cloud infra I’m using AWS AppRunner to execute the docker container I stored on ECR.
On the local environment as well as on AWS every time I call an API I get the following payload:
{
"uploaded": [],
"errors": [
{
"code": "error",
"message": "One or more errors occurred. (The request signature we calculated does not match the signature you provided. Check your key and signing method.)",
"description": "Operation Failed. General Error.",
"innerError": {
"requestId": null,
"date": "2023-06-01T17:39:28.2019269+00:00"
}
}
]
}
The logs didn’t find that much information and I didn’t find a way to configure them to be more verbose.
The only message I saw on the logs are:
2023-06-01 14:51:50 info: GroupDocs.Conversion.Cloud.Web.Startup[0]
2023-06-01 14:51:50 The license has been set.
2023-06-01 14:51:52 warn: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[60]
2023-06-01 14:51:52 Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed.
2023-06-01 14:51:52 warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35]
2023-06-01 14:51:52 No XML encryptor configured. Key {041a4e05-ac6c-4047-bb09-243e9f0edc1c} may be persisted to storage in unencrypted form.
2023-06-01 14:51:52 Hosting environment: Production
2023-06-01 14:51:52 Content root path: /app
2023-06-01 14:51:52 Now listening on: http://[::]:80
2023-06-01 14:51:52 Application started. Press Ctrl+C to shut down.