source: trunk/docs/examples/virtualhost_directive.conf

Last change on this file was 334, checked in by quinn, 16 years ago

Fixed lots of misplings. I'm so embarrassed! ;P

File size: 559 bytes
Line 
1<VirtualHost 123.123.123.123:80>
2    ServerName example.com
3    ServerAlias *.example.com
4    DocumentRoot /home/user/www.example.com/html
5    CustomLog /home/user/www.example.com/log/access_log combined
6    ErrorLog /home/user/www.example.com/log/error_log
7    SetEnv DB_NAME carl
8    SetEnv DB_USER user_asdf
9    SetEnv DB_PASS pass_asdf
10    SetEnv SIGNING_KEY kjhu3hf4gpoh2p9fgh8223t8h120
11    <Directory "/home/user/www.example.com">
12        php_admin_value open_basedir "/home/user/www.example.com:/usr/local/lib/php:/tmp"
13    </Directory>
14</VirtualHost>
Note: See TracBrowser for help on using the repository browser.