@Marseu, Moritz You can enable Application Logging for your app and configure it to log to the file system. This will allow you to capture the stdout and stderr output of your app, which may contain useful information about the issue you are experiencing.
Enable Application Logging:
- Go to the Azure portal.
- Navigate to your web app.
- Under the “Monitoring” section, select “App Service logs”.
- Enable “Application Logging (Filesystem)”.
Configure Logging:
- Set the logging destination to “File System”.
- Specify a disk quota and retention period according to your needs.
Access Log Files:
- Download the log files by navigating to
https://<app-name>.scm.azurewebsites.net/api/logs/docker/zip
. - The log files will be located in the
/home/LogFiles/Application
directory.
This method should help you gather more information about the php-fpm
processes and potentially pinpoint the root cause of the issue.