add apache conf
authorymh <ymh.work@gmail.com>
Mon, 26 Apr 2010 18:05:06 +0200
changeset 82 b982a1479e1c
parent 81 e63b40348c2c
child 83 301bb2f60b88
add apache conf
build/conf/httpd.conf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/build/conf/httpd.conf	Mon Apr 26 18:05:06 2010 +0200
@@ -0,0 +1,15 @@
+<Directory "/$data_dir/symfony/web/sf">
+ AllowOverride All
+ Allow from All
+</Directory>
+<VirtualHost *:80>
+  ServerName myapp.example.com
+  DocumentRoot "/home/steve/myproject/web"
+  DirectoryIndex index.php
+  Alias /sf /$data_dir/symfony/web/sf
+
+  <Directory "/home/steve/myproject/web">
+   AllowOverride All
+   Allow from All
+  </Directory>
+</VirtualHost>
\ No newline at end of file