Package:Apache

From Funtoo
Revision as of 19:39, August 26, 2014 by Threesixes (talk | contribs) (initial commit (more to come, just want to save what ive got so far))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Apache

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

apache is a powerful web server. apache serves html/css/cgi/pl out of the box, and other languages/frameworks via extensions.

Install

root # emerge apache

Configuration

System

Many packages have apache2 use flags, and require them to be supported by apache. Setting a system wide apache2 use flag is a good idea.

   /etc/portage/make.conf - set system wide apache2 useflag
USE="apache2 ..........."

Package

Apache's configuration files are broken up and located in several spots.

  • /etc/conf.d/apache2
  • /etc/apache2/httpd.conf
  • /etc/apache2/modules.d/*
  • /etc/apache2/vhosts.d/*

conf.d controls the init script, adding things to it such as -D SECURITY & -D PHP5 will enable web application fire-walling & the php scripting language.

httpd.conf controls how the server behaves, at the bottom of the file it has directives to include configuration files ending in .conf in /etc/apache2/modules.d & /etc/apache2/vhosts.d


   /etc/portage/make.conf - set system wide apache2 useflag
USE="apache2 ..........."

Service

To start apache immediately:

root # rc-service apache2 start

To start apache upon boot:

root # rc-update add apache2