]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/apache/eg.conf
removed the image caching configs since that is handled by memcache now
[Evergreen.git] / Open-ILS / examples / apache / eg.conf
1 # :vim set syntax apache
2
3 LogLevel debug
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 SetEnv PERL5LIB /openils/lib/perl5
18 PerlRequire /etc/apache2/startup.pl
19 PerlChildInitHandler OpenILS::WWW::Reporter::child_init
20 PerlChildInitHandler OpenILS::WWW::SuperCat::child_init
21 PerlChildInitHandler OpenILS::WWW::AddedContent::child_init;
22
23
24 # ----------------------------------------------------------------------------------
25 # Set some defaults for our working directories
26 # ----------------------------------------------------------------------------------
27 <Directory /openils/var/web>
28     Order allow,deny
29     Allow from all
30 </Directory>
31
32
33 # ----------------------------------------------------------------------------------
34 # XUL directory
35 # ----------------------------------------------------------------------------------
36 <Directory /openils/var/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/(.*)/(.*)/(.*) /openils/var/web/opac/skin/$1/$2/$3
48 AliasMatch ^/opac/.*/extras/slimpac/(.*) /openils/var/web/opac/extras/slimpac/$1
49
50
51
52 # ----------------------------------------------------------------------------------
53 # System config CGI scripts go here
54 # ----------------------------------------------------------------------------------
55 Alias /cgi-bin/ "/openils/var/cgi-bin/"
56 <Directory "/openils/var/cgi-bin">
57         AddHandler cgi-script .cgi .pl
58         AllowOverride None
59         Options None
60         Order deny,allow
61         Deny from all
62         Allow from 10.0.0.0/8
63         Options FollowSymLinks ExecCGI Indexes
64 </Directory>
65
66
67
68 # ----------------------------------------------------------------------------------
69 # OPTIONAL: Set how long the client will cache our content.  Change to suit
70 # ----------------------------------------------------------------------------------
71 ExpiresActive On
72 ExpiresDefault A2592000
73 ExpiresByType text/html A64800
74 ExpiresByType application/xhtml+xml A64800
75 ExpiresByType application/x-javascript A64800
76 ExpiresByType text/css A3000
77
78
79
80
81 # ----------------------------------------------------------------------------------
82 # Set up our main virtual host
83 # ----------------------------------------------------------------------------------
84 NameVirtualHost *:80
85 <VirtualHost *:80>
86         ServerName localhost:80
87         ServerAlias 127.0.0.1:80
88         DocumentRoot /openils/var/web/
89         DirectoryIndex index.xml index.html
90     # - absorb the shared virtual host settings
91     Include eg_vhost.conf
92 </VirtualHost>
93
94
95
96
97
98 # ----------------------------------------------------------------------------------
99 # Set up our SSL virtual host
100 # ----------------------------------------------------------------------------------
101 Listen 443
102 NameVirtualHost *:443
103 <VirtualHost *:443>
104         DocumentRoot "/openils/var/web"
105         ServerName localhost:443
106         ServerAlias 127.0.0.1:443
107         SSLEngine on
108         SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
109
110     # If you don't have an SSL cert, you can create self-signed 
111     # certificate and key with:
112     # openssl req -new -x509 -nodes -out server.crt -keyout server.key
113         SSLCertificateFile ssl/server.crt
114         SSLCertificateKeyFile ssl/server.key
115
116     # - absorb the shared virtual host settings
117     Include eg_vhost.conf
118
119     # help IE along with SSL pages
120     BrowserMatch ".*MSIE.*" \
121         nokeepalive ssl-unclean-shutdown \
122         downgrade-1.0 force-response-1.0
123
124 </VirtualHost>
125
126