Correct apache configuratrion file
authorymh <ymh.work@gmail.com>
Mon, 26 Apr 2010 18:17:02 +0200
changeset 83 301bb2f60b88
parent 82 b982a1479e1c
child 84 5ffc23a7f801
Correct apache configuratrion file
build/conf/httpd.conf
--- a/build/conf/httpd.conf	Mon Apr 26 18:05:06 2010 +0200
+++ b/build/conf/httpd.conf	Mon Apr 26 18:17:02 2010 +0200
@@ -1,15 +1,23 @@
-<Directory "/$data_dir/symfony/web/sf">
+<Directory "/srv/www/mosatags/lib/vendor/symfony/data/web/sf">
  AllowOverride All
  Allow from All
 </Directory>
 <VirtualHost *:80>
-  ServerName myapp.example.com
-  DocumentRoot "/home/steve/myproject/web"
+  DocumentRoot "/srv/www/mosatags/web"
   DirectoryIndex index.php
-  Alias /sf /$data_dir/symfony/web/sf
+  Alias /sf /srv/www/mosatags/lib/vendor/symfony/data/web/sf
 
-  <Directory "/home/steve/myproject/web">
+  <Directory "/srv/www/mosatags/web">
    AllowOverride All
    Allow from All
   </Directory>
-</VirtualHost>
\ No newline at end of file
+
+  ErrorLog /var/log/apache2/error.log
+
+  # Possible values include: debug, info, notice, warn, error, crit,
+  # alert, emerg.
+  LogLevel warn
+
+  CustomLog /var/log/apache2/access.log combined
+
+</VirtualHost>