Advertisement
Guest User

root

a guest
Jan 10th, 2010
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <VirtualHost *>
  2. ServerAdmin webmaster@localhost
  3.  
  4. DocumentRoot /var/www/
  5.  
  6. <Directory />
  7. Options FollowSymLinks
  8. AllowOverride None
  9. </Directory>
  10. <Directory /var/www/>
  11. Options Indexes FollowSymLinks MultiViews
  12. AllowOverride None
  13. Order allow,deny
  14. allow from all
  15. </Directory>
  16.  
  17. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  18. <Directory "/usr/lib/cgi-bin">
  19. AllowOverride None
  20. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  21. Order allow,deny
  22. Allow from all
  23. </Directory>
  24.  
  25. ErrorLog /var/log/apache2/error.log
  26.  
  27. # Possible values include: debug, info, notice, warn, error, crit,
  28. # alert, emerg.
  29. LogLevel warn
  30.  
  31. CustomLog /var/log/apache2/access.log combined
  32.  
  33. Alias /doc/ "/usr/share/doc/"
  34. <Directory "/usr/share/doc/">
  35. Options Indexes MultiViews FollowSymLinks
  36. AllowOverride None
  37. Order deny,allow
  38. Deny from all
  39. Allow from 127.0.0.0/255.0.0.0 ::1/128
  40. </Directory>
  41.  
  42. </VirtualHost>
  43.  
  44. ##############
  45. # Webradio #
  46. #############
  47. <VirtualHost *>
  48. ServerAdmin webmaster@localhost
  49.  
  50. DocumentRoot /var/www/
  51.  
  52. ServerName www.paissad-radio.homelinux.com
  53. ProxyRequests Off
  54. ProxyPass / http://localhost:18000/
  55. ProxyPassReverse / http://localhost:18000/
  56.  
  57. </VirtualHost>
  58. <Proxy *>
  59. Order deny,allow
  60. Allow from All
  61. </Proxy>
  62. ####################
  63.  
  64.  
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement