Advertisement
Guest User

apache problem host

a guest
Sep 5th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 KB | None | 0 0
  1. <VirtualHost *:8080>
  2.    DocumentRoot /home/xenti/www
  3.    ServerAdmin admin@xenti.org
  4.    ServerName xenti.org
  5.    ServerAlias www.xenti.org
  6.    ErrorLog /home/xenti/logs/apache_error.log
  7.    CustomLog /home/xenti/logs/apache_access.log combined
  8. <Directory />
  9. #Order Deny,Allow
  10. #Deny from all
  11. Options -ExecCGI -Indexes -Includes +FollowSymLinks
  12. AllowOverride All
  13.   <Limit GET POST>
  14.   Order allow,deny
  15.   Allow from all
  16.   </Limit>
  17.   <LimitExcept GET POST>
  18.   Order deny,allow
  19.   Deny from all
  20.   </LimitExcept>
  21. </Directory>
  22.  
  23. AssignUserId www-data xenti
  24.  
  25. php_admin_value open_basedir "/home/xenti/:."
  26. php_admin_value upload_tmp_dir "/home/xenti/tmp"
  27. php_admin_value session.save_path "/home/xenti/tmp"
  28. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement