This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
help-center-docs/software/httpd/en.md

712 B

+++ title = "Apache (httpd)" +++

Apache (httpd) Web Server

Solus provides httpd for web developers to test locally before uploading their work. Below are installation instructions for installing httpd:

Install

httpd can be installed either from the Software Center or via terminal:

sudo eopkg install httpd

Configuration must be copied from /usr/share/defaults/httpd/httpd.conf into /etc/ and then edited to your liking. The default location for www documents in /var/www/

Commands for managing the httpd via systemd systemctl:

sudo systemctl enable httpd # enable on startup
sudo systemctl start httpd # start the web server
sudo systemctl stop httpd # stop the web server