Installing Apache: Difference between revisions

From Leechfinger
Jump to navigationJump to search
Qais (talk | contribs)
Created page with "== Installing apache == We will be installing apache2. <syntaxhighlight lang="bash" line> # apt install -y apache2 apache2-utils </syntaxhighlight> Category:Apache"
 
Qais (talk | contribs)
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
# apt install -y apache2 apache2-utils
# apt install -y apache2 apache2-utils
</syntaxhighlight>
</syntaxhighlight>
 
== Important modules ==
Here are the modules you will need to enable for apache.
<syntaxhighlight lang="bash" line>
# a2enmod rewrite
# a2enmod ssl
# a2enmod socache_shmcb
# a2enmod imagemap
# a2enmod headers
</syntaxhighlight>
[[Category:Apache]]
[[Category:Apache]]

Latest revision as of 01:42, 22 May 2024

Installing apache

We will be installing apache2.

# apt install -y apache2 apache2-utils

Important modules

Here are the modules you will need to enable for apache.

# a2enmod rewrite
# a2enmod ssl
# a2enmod socache_shmcb
# a2enmod imagemap 
# a2enmod headers