]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/eg.conf.in
d095e15b2a045b4c8abac2df287c806a42dbc33e
[working/Evergreen.git] / Open-ILS / examples / apache / eg.conf.in
1 # :vim set syntax apache
2
3 LogLevel info 
4 # - log locally
5 # CustomLog /var/log/apache2/access.log combined
6 # ErrorLog /var/log/apache2/error.log
7 # - log to syslog 
8 CustomLog "|/usr/bin/logger -p local7.info" common
9 ErrorLog syslog:local7
10
11
12 # ----------------------------------------------------------------------------------
13 # Set up Perl 
14 # ----------------------------------------------------------------------------------
15
16 # - needed by CGIs
17 PerlRequire /etc/apache2/eg_startup
18 PerlChildInitHandler OpenILS::WWW::Reporter::child_init
19 PerlChildInitHandler OpenILS::WWW::SuperCat::child_init
20 PerlChildInitHandler OpenILS::WWW::AddedContent::child_init
21 PerlChildInitHandler OpenILS::WWW::PasswordReset::child_init
22 PerlChildInitHandler OpenILS::WWW::AutoSuggest::child_init
23
24 # ----------------------------------------------------------------------------------
25 # Set some defaults for our working directories
26 # ----------------------------------------------------------------------------------
27 <Directory @localstatedir@/web>
28     Order allow,deny
29     Allow from all
30 </Directory>
31
32
33 # ----------------------------------------------------------------------------------
34 # XUL directory
35 # ----------------------------------------------------------------------------------
36 <Directory @localstatedir@/web/xul>
37    Options Indexes FollowSymLinks
38    AllowOverride None
39    Order allow,deny
40    Allow from all
41 </Directory>
42
43
44 # ----------------------------------------------------------------------------------
45 # Remove the language portion from the URL
46 # ----------------------------------------------------------------------------------
47 AliasMatch ^/opac/.*/skin/(.*)/(.*)/(.*) @localstatedir@/web/opac/skin/$1/$2/$3
48 AliasMatch ^/opac/.*/extras/slimpac/(.*) @localstatedir@/web/opac/extras/slimpac/$1
49 AliasMatch ^/opac/.*/extras/selfcheck/(.*) @localstatedir@/web/opac/extras/selfcheck/$1
50
51
52
53 # ----------------------------------------------------------------------------------
54 # System config CGI scripts go here
55 # ----------------------------------------------------------------------------------
56 Alias /cgi-bin/offline/ "@localstatedir@/cgi-bin/offline/"
57 <Directory "@localstatedir@/cgi-bin/offline">
58         AddHandler cgi-script .cgi .pl
59         AllowOverride None
60         Options None
61         Order deny,allow
62         Deny from all
63         Allow from 10.0.0.0/8
64         Options FollowSymLinks ExecCGI Indexes
65 </Directory>
66
67
68 # ----------------------------------------------------------------------------------
69 # Updates folder
70 # ----------------------------------------------------------------------------------
71 Alias /updates/ "@localstatedir@/updates/pub/"
72 <Directory "@localstatedir@/updates/pub">
73         <Files check>
74                 ForceType cgi-script
75         </Files>
76         <Files update.rdf>
77                 ForceType cgi-script
78         </Files>
79         <Files manualupdate.html>
80                 ForceType cgi-script
81         </Files>
82         <Files download>
83                 ForceType cgi-script
84         </Files>
85         AllowOverride None
86         Options None
87         Allow from all
88         Options ExecCGI
89 </Directory>
90
91
92 # ----------------------------------------------------------------------------------
93 # OPTIONAL: Set how long the client will cache our content.  Change to suit
94 # ----------------------------------------------------------------------------------
95 ExpiresActive On
96 ExpiresDefault "access plus 1 month"
97 ExpiresByType text/html "access plus 18 hours"
98 ExpiresByType application/xhtml+xml "access plus 18 hours"
99 ExpiresByType application/x-javascript "access plus 18 hours"
100 ExpiresByType application/javascript "access plus 18 hours"
101 ExpiresByType text/css "access plus 50 minutes"
102
103 # ----------------------------------------------------------------------------------
104 # Set up our SSL virtual host
105 # ----------------------------------------------------------------------------------
106 #Listen 443
107 NameVirtualHost *:443
108 <VirtualHost *:443>
109         DocumentRoot "@localstatedir@/web"
110         ServerName localhost:443
111         ServerAlias 127.0.0.1:443
112         SSLEngine on
113         SSLHonorCipherOrder On
114         SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH:!AESGCM
115
116     # If you don't have an SSL cert, you can create self-signed 
117     # certificate and key with:
118     # openssl req -new -x509 -nodes -out server.crt -keyout server.key
119         SSLCertificateFile ssl/server.crt
120         SSLCertificateKeyFile ssl/server.key
121
122     # - absorb the shared virtual host settings
123     Include eg_vhost.conf
124
125     # help IE along with SSL pages
126     SetEnvIf User-Agent ".*MSIE [1-5].*" \
127         nokeepalive ssl-unclean-shutdown \
128         downgrade-1.0 force-response-1.0
129
130     SetEnvIf User-Agent ".*MSIE [6-9].*" \
131         ssl-unclean-shutdown
132
133 </VirtualHost>
134
135 # ----------------------------------------------------------------------------------
136 # Set up our main virtual host
137 # Port 80 comes after 443 to avoid "unknown protocol speaking not SSL to HTTPS port!?" 
138 # errors, per http://wiki.apache.org/httpd/InternalDummyConnection
139 # ----------------------------------------------------------------------------------
140
141 # Commented to avoid warnings from duplicate "NameVirtualHost: *80" directives
142 #NameVirtualHost *:80
143 <VirtualHost *:80>
144         ServerName localhost:80
145         ServerAlias 127.0.0.1:80
146         DocumentRoot @localstatedir@/web/
147         DirectoryIndex index.xml index.html index.xhtml
148     # - absorb the shared virtual host settings
149     Include eg_vhost.conf
150 </VirtualHost>
151