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:
- 1160 Bytes
1 | # Apache 1.3 HTTP proxy example for Typo with Mongrel |
2 | # |
3 | # Before any of this will work, you need to make sure that the mod_proxy |
4 | # modules are loaded. For shared hosting, your provider will have do this |
5 | # globally. The line required looks like this, although the exact path may |
6 | # vary: |
7 | # |
8 | # LoadModule proxy_module /usr/lib/apache/modules/mod_proxy.so |
9 | # |
10 | # Then you'll want a VirtualHost section that looks about like this: |
11 | |
12 | <VirtualHost blog.example.com> |
13 | ServerName blog.example.com |
14 | ServerAlias www.blog.example.com |
15 | |
16 | # Change this to your email address |
17 | ServerAdmin webmaster@localhost |
18 | |
19 | # Change these to be valid paths for your host. The DocumentRoot path |
20 | # isn't very important because we don't actually use it for anything. |
21 | # For security's sake, it's best that it points to an empty directory, |
22 | # but that's not critical. |
23 | DocumentRoot /var/www/blog |
24 | ErrorLog /var/log/apache2/blog_error.log |
25 | CustomLog /var/log/apache2/blog_access.log combined |
26 | |
27 | ServerSignature On |
28 | |
29 | # This is the important part--it sets up proxying. |
30 | ProxyRequests Off |
31 | ProxyPass / $RAILS_URL |
32 | ProxyPassReverse / $RAILS_URL |
33 | </VirtualHost> |