12345678910111213141516171819 |
- <VirtualHost *:81>
- DocumentRoot /var/www/g2
- LogLevel warn
- ErrorLog /var/log/httpd/altpath_error.log
- CustomLog /var/log/httpd/altpath_access.log combined
- PHPINIDir /var/www/g2/server/php.ini
- <Directory />
- Options FollowSymLinks MultiViews
- Order allow,deny
- Allow from all
- </Directory>
- <Directory ~ "/server">
- Order Allow,deny
- Deny from all
- </Directory>
- </VirtualHost>
|