Document required Apache modules for PHP-FPM setup#14794
Merged
Conversation
Explicitly list proxy_module and proxy_fcgi_module as required when using php-fpm instead of mod_php. Includes command to verify modules are enabled. Helps troubleshoot missing modules on distributions like RPi OS. Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
2 tasks
miaulalala
approved these changes
May 7, 2026
Contributor
📖 Documentation Preview📄 1 changed documentation pageLast updated: Thu, 07 May 2026 09:26:19 GMT |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds explicit documentation about required Apache modules when using PHP-FPM with Nextcloud.
Problem
The Apache configuration guide doesn't clearly document that
proxy_moduleandproxy_fcgi_moduleare required when using php-fpm instead of mod_php. This causes confusion for users on distributions like Raspberry Pi OS, where these modules may not be enabled by default. Users encounter connection or configuration errors without understanding what modules are missing.Solution
proxy_moduleandproxy_fcgi_moduleas required for php-fpm setups witha2enmodcommandsapache2ctl -Mverification command and troubleshooting guidanceChanges
Relates to
#14036