You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@httpd.apache.org by Apache Wiki <wi...@apache.org> on 2013/08/14 21:39:10 UTC

[Httpd Wiki] Update of "Minimal_Config" by SeanTimmins

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.

The "Minimal_Config" page has been changed by SeanTimmins:
https://wiki.apache.org/httpd/Minimal_Config?action=diff&rev1=2&rev2=3

- Here is a quick snippet of a minimal set of directive to launch an httpd instance.
+ Here are two quick snippets of the minimal set of directives to launch an httpd instance for versions 2.4 and 2.2.
  
- It is meant to be used as a starting point when one either wants to clean up an old instance which segfaults or suffers from other recurring issues, or achieve the minimum footprint on a system limited on resources.
+ They are meant to be used as a starting point when one either wants to clean up an old instance which segfaults or suffers from other recurring issues, or to achieve the minimum footprint on a system with limited resources.
  
- This is compatible with version 2.2 on the apache HTTP server. It could be adapted to work on 2.4 provided mod_access_compat is loaded.
+ The following configuration is compatible with version 2.4 of the apache HTTP server with the default MPM (event) compiled as a shared module. This configuration will need to be modified slightly for windows installs.
+ 
+ {{{
+ ServerRoot "/usr/pkg"
+ 
+ LoadModule mpm_event_module lib/mod_mpm_event.so
+ LoadModule mime_module lib/mod_mime.so
+ LoadModule dir_module lib/mod_dir.so
+ LoadModule authz_core_module lib/mod_authz_core.so
+ LoadModule unixd_module lib/mod_unixd.so
+ 
+ TypesConfig /usr/pkg/etc/httpd/mime.types
+ 
+ PidFile /tmp/mini-httpd.pid
+ 
+ User nobody
+ 
+ Listen 0.0.0.0:8080
+ 
+ DocumentRoot "/usr/local/htdocs"
+ DirectoryIndex index.html
+ ErrorLog syslog
+ 
+ <Directory />
+   AllowOverride None
+   Require all denied
+ </Directory>
+ 
+ <Directory "/usr/local/htdocs">
+   Require all granted
+ </Directory>
+ }}}
+ 
+ The following configuration is compatible with version 2.2 of the apache HTTP server.
  
  {{{
  ServerRoot "/usr/pkg"

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org