Advertisement
Guest User

Untitled

a guest
Jul 27th, 2011
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <VirtualHost *:8080>
  2. ServerName wellplayed.org
  3. ServerAlias www.wellplayed.org wellplayer.org wplayed.com
  4.  
  5. ServerAdmin contact@wellplayed.org
  6.  
  7. FcgidInitialEnv PHPRC "/etc/php5/cgi/prod"
  8.  
  9. ScriptAlias /cgi-bin/ "/app/www/wellplayed.org/cgi-bin/"
  10.  
  11. DirectoryIndex index.php index.html
  12. DocumentRoot /app/www/wellplayed.org/htdocs
  13.  
  14. <IfModule mime_module>
  15. TypesConfig /app/www/wellplayed.org/conf/mime.types
  16. AddType app/wwwlication/x-compress .Z
  17. AddType app/wwwlication/x-gzip .gz .tgz
  18. </IfModule>
  19.  
  20. <Directory /app/www/wellplayed.org/htdocs>
  21. Options -Indexes FollowSymLinks +ExecCGI
  22. AllowOverride all
  23. Order allow,deny
  24. Allow from all
  25. </Directory>
  26.  
  27. <Directory "/app/www/wellplayed.org/cgi-bin/">
  28. AllowOverride None
  29. Options None
  30. Order allow,deny
  31. Allow from all
  32. </Directory>
  33.  
  34. LogLevel warn
  35. ErrorLog "/app/www/wellplayed.org/logs/error_log"
  36. LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" varnishcombined
  37. CustomLog "/app/www/wellplayed.org/logs/access_log" varnishcombined
  38.  
  39. AccessFileName .htaccess
  40. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement