Difference between revisions of "API:bin/generate apacheconf"

From EPrints Documentation
Jump to: navigation, search
(Created page with '<!-- Pod2Wiki=_preamble_ This page has been automatically generated from the EPrints 3.2 source. Any wiki changes made between the 'Pod2Wiki=*' and 'Edit below this comment' com…')
 
Line 1: Line 1:
 
<!-- Pod2Wiki=_preamble_  
 
<!-- Pod2Wiki=_preamble_  
 
This page has been automatically generated from the EPrints 3.2 source. Any wiki changes made between the 'Pod2Wiki=*' and 'Edit below this comment' comments will be lost.
 
This page has been automatically generated from the EPrints 3.2 source. Any wiki changes made between the 'Pod2Wiki=*' and 'Edit below this comment' comments will be lost.
  -->{{API}}{{Pod2Wiki}}{{API:Source|file=bin/generate_apacheconf.pm|package_name=bin/generate_apacheconf}}[[Category:API|bin/generate_apacheconf]]<div><!-- Edit below this comment -->
+
  -->{{API}}{{Pod2Wiki}}{{API:Source|file=bin/generate_apacheconf.pm|package_name=bin/generate_apacheconf}}[[Category:API|BIN/GENERATE_APACHECONF]][[Category:API:bin/generate_apacheconf|BIN/GENERATE_APACHECONF]][[Category:API:bin/generate_apacheconf|BIN/GENERATE_APACHECONF]]<div><!-- Edit below this comment -->
  
  

Revision as of 15:13, 25 February 2010

EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects


API: Core API

Latest Source Code (3.4, 3.3) | Revision Log | Before editing this page please read Pod2Wiki


NAME

generate_apacheconf - Create the apache config files needed for EPrints

User Comments


SYNOPSIS

generate_apacheconf [options]

User Comments


DESCRIPTION

This script generates the apache config files which will be used by EPrints. In the simple case all you need to do is run this script then add a line to your main apache configuration file - often, but not always, /usr/local/apache/conf/httpd.conf

Include /opt/eprints3/cfg/apache.conf
 

Or elsewhere if you installed EPrints somewhere other than /opt/eprints3. This file then uses the "Include" directive to include all relevant apache config files from this EPrints installation.

By default the virtualhost directives are

VirtualHost *
 

But the * can be changed to something different by editing the virtualhost option in SystemSettings.pm

User Comments


ARGUMENTS

User Comments


OPTIONS

User Comments


--help

Print a brief help message and exit.

User Comments


--man

Print the full manual page and then exit.

User Comments


--quiet

Be vewwy vewwy quiet. This option will supress all output unless an error occurs.

User Comments


--verbose

Explain in detail what is going on. May be repeated for greater effect.

User Comments


--version

Output version information and exit.

User Comments


FILES

User Comments


EPRINTS/cfg/apache.conf

This file is not updated if it already exists, so you can add system-wide apache configuration directives here. By default it just includes the two other system wide files: auto-apache-includes.conf and auto-apache.conf

User Comments


EPRINTS/cfg/auto-apache-includes.conf

This file is updated with Include lines to each of the repository specific apache config files. This file should not be edited by hand,

User Comments


EPRINTS/cfg/auto-apache.conf

This file contains the system wide apache directives required by EPrints. This file should not be edited by hand.

User Comments


EPRINTS/archives/ARCHIVEDIR/cfg/apache.conf

This file is not updated if it already exists, so you can add repository-specific apache configuration directives here. By default it just includes the automatically generated repository specific file: auto-apache.conf

User Comments


EPRINTS/archives/ARCHIVEDIR/var/auto-apache.conf

This file contains all the configuration directives needed for an repository. This is where the bulk of the configuration appears, the clever stuff, if you will. This file should not be edited by hand.

User Comments


EPRINTS/archives/ARCHIVEDIR/var/auto-secure.conf

Only created if the repository has a securehost configured. This file contains all the configuration options that need to be included into the secure server virtualhost.

User Comments


EPRINTS/archives/ARCHIVEDIR/cfg/apachevhost.conf

This file is not updated if it already exists, it is included into the virutalhost in auto-apache.conf so that you can a couple of additional directives if you need to. For example, redirects or additional log directives.

User Comments