Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 71
- Log:
Start of upgrade to Typo 4.0.0, the latest stable release since
2.6.0. Note test/mocks/themes/azure changes from a file to a
directory, so the file has been removed in this revision and
the directory will be added in the next revision.
- Author:
- adh
- Date:
- Mon Aug 07 22:18:11 +0100 2006
- Size:
- 1352 Bytes
1 | # Apache 2.0/2.2 HTTP proxy example for Typo with Mongrel |
2 | # |
3 | # Before any of this will work, you need to make sure that the mod_proxy and |
4 | # mod_proxy_http modules are loaded. For shared hosting, your provider will |
5 | # have do this globally. The two lines required look like this, although the |
6 | # exact path may vary: |
7 | # |
8 | # LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so |
9 | # LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so |
10 | # |
11 | # Then you'll want a VirtualHost section that looks about like this: |
12 | |
13 | <VirtualHost blog.example.com> |
14 | ServerName blog.example.com |
15 | ServerAlias www.blog.example.com |
16 | |
17 | # Change this to your email address |
18 | ServerAdmin webmaster@localhost |
19 | |
20 | # Change these to be valid paths for your host. The DocumentRoot path |
21 | # isn't very important because we don't actually use it for anything. |
22 | # For security's sake, it's best that it points to an empty directory, |
23 | # but that's not critical. |
24 | DocumentRoot /var/www/blog |
25 | ErrorLog /var/log/apache2/blog_error.log |
26 | CustomLog /var/log/apache2/blog_access.log combined |
27 | |
28 | ServerSignature On |
29 | |
30 | # This is the important part--it sets up proxying. |
31 | ProxyRequests Off |
32 | <Proxy *> |
33 | Order deny,allow |
34 | Allow from all |
35 | </Proxy> |
36 | |
37 | ProxyPass / $RAILS_URL |
38 | ProxyPassReverse / $RAILS_URL |
39 | ProxyPreserveHost On |
40 | </VirtualHost> |