Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
added apache windows file
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltel authored and josterholt committed Dec 13, 2011
1 parent 2e5a80f commit bd81cc2
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions apache/httpd-vhosts-windows.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<VirtualHost *:80>
ServerAdmin mtel@erepublic.com
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/cms"
Alias /common/ "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/common/"

ServerName dev.cms.erepublic.com

<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/cms" >
Options FollowSymLinks MultiViews
ErrorDocument 404 /cms.php
AllowOverride None
Order allow,deny
Allow from all
</Directory>

php_value include_path ".;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/classes;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/classes/cms;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/includes;"

php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag magic_quotes_sybase off
</VirtualHost>

<VirtualHost *:80>
ServerAdmin mtel@erepublic.com
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/gt"
Alias /common/ "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/common/"

ServerName dev.govtech2.com

<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/html/gt" >
Options FollowSymLinks MultiViews
ErrorDocument 404 /index.php
AllowOverride None
Order allow,deny
Allow from all
</Directory>


php_value include_path ".;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/classes;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/classes/common_modules;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/classes/cms;C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/docu/includes;"

php_value include_path ".:/var/www/newgt/classes:/var/www/newgt/classes/common_modules:/var/www/newgt/classes/gt:/var/www/newgt/includes:"
#php_value auto_prepend_file "/var/www/newgt/classes/class.SessionHandler.php"

php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag magic_quotes_sybase off
</VirtualHost>

0 comments on commit bd81cc2

Please sign in to comment.