xabbu
16 September 2022 06:53
2
Since you made changes to httpd.conf
, make sure you use only one Multi-Processing Module. Apache supports 3 (prefork, worker or event), choose only one.
If you want to use php, choose prefork.
See
https://wiki.archlinux.org/title/Apache_HTTP_Server#PHP
and
Difficulty: ★★☆☆☆
NOTE: The phrase ip.x.y.z is a placeholder for the server address which can be a valid hostname or an IP address e.g. 192.168.1.10 2023-05-23T22:00:00Z (UTC) by @linux-aarhus
This tutorial walk you through installing and configuring Apache, MySQL, PHP (LAMP).
LAMP is the the acronym of Linux, Apache, MySQL/MariaDB, PHP/Perl/Python.
Important
Never add packages without a full system sync - to sync your system execute
sudo pacman -Syu
The commands in this guide r…
1 Like