Apache: Difference between revisions
(Formatting and adding links to related pages, homepage) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows. | |||
== Simple Setup == | |||
Add the {{Pkg|apache2}} package: | |||
{{Cmd|# | {{Cmd|# apk add apache2}} | ||
Start the service: | |||
{{Cmd|# | {{Cmd|# rc-service apache2 start}} | ||
Navigate a browser to the machine's address; there you should see the default "It works" page. | |||
Enable apache on startup (if needed): | |||
{{Cmd|# rc-update add apache2}} | |||
{{ | Edit the configuration in {{Path|/etc/apache2/}} and run | ||
{{Cmd|# rc-service apache2 restart}} | |||
to enable your changes | |||
== Additional Guides == | |||
* [[Apache with php-fpm]] | |||
* [[Apache authentication: NTLM Single Signon]] | |||
== See Also == | |||
* [https://httpd.apache.org/ Apache Homepage] | |||
[[Category:Web Server]] |
Latest revision as of 16:33, 14 May 2023
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows.
Simple Setup
Add the apache2 package:
# apk add apache2
Start the service:
# rc-service apache2 start
Navigate a browser to the machine's address; there you should see the default "It works" page.
Enable apache on startup (if needed):
# rc-update add apache2
Edit the configuration in /etc/apache2/ and run
# rc-service apache2 restart
to enable your changes