Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <VirtualHost *:80>
  2.  
  3. ServerAdmin info@_JAJADATWILLENJULLIEWELWETEN_
  4. ServerName _JAJADATWILLENJULLIEWELWETEN_
  5.  
  6. DocumentRoot /var/www/casper.aero/flighttracking/sensorcity/
  7. DirectoryIndex index.html index.php index.cgi
  8. AddHandler cgi-script .cgi
  9.  
  10. RewriteEngine on
  11. RewriteRule ^/collector?$ /interfaces/bas/ [PT]
  12. KeepAliveTimeout 20
  13.  
  14. <Directory />
  15. Options FollowSymLinks
  16. AllowOverride None
  17. </Directory>
  18.  
  19. <Directory /var/www/casper.aero/flighttracking/sensorcity/>
  20. Options Indexes FollowSymLinks MultiViews
  21. AllowOverride None
  22. Order allow,deny
  23. allow from all
  24. </Directory>
  25.  
  26. <Directory /var/www/casper.aero/flighttracking/sensorcity/interfaces>
  27. Options +ExecCGI
  28. order allow,deny
  29. allow from all
  30. AuthType None
  31. </Directory>
  32.  
  33. ErrorLog ${APACHE_LOG_DIR}/error.log
  34.  
  35. # Possible values include: debug, info, notice, warn, error, crit,
  36. # alert, emerg.
  37. LogLevel debug
  38.  
  39. CustomLog ${APACHE_LOG_DIR}/access.log combined
  40.  
  41. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement