AH00534: apache2
trantrongphuc29
FREEOP
2 months ago
AH00534: apache2: Configuration error: More than one MPM loaded.
1 Replies
Status changed to Awaiting Railway Response Railway • 2 months ago
ilyass012
FREE
2 months ago
i think nothing wrong with your code. the fix is to disable the extra mpm modules before apache starts. add this to the end of your dockerfile:
CMD ["bash", "-lc", "a2dismod mpm_event mpm_worker || true && a2enmod mpm_prefork && apache2-foreground"]
if you dont have a dockerfile, go to railway settings and override the start command with the same line