Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. 127.0.0.1 - - [22/Oct/2014:16:41:31 -0400] "GET / HTTP/1.1" 404 198
  2. 127.0.0.1 - - [22/Oct/2014:16:41:34 -0400] "GET / HTTP/1.1" 404 198
  3. 127.0.0.1 - - [22/Oct/2014:16:43:56 -0400] "GET / HTTP/1.1" 404 198
  4. 127.0.0.1 - - [22/Oct/2014:16:45:02 -0400] "GET / HTTP/1.1" 404 198
  5. 127.0.0.1 - - [22/Oct/2014:16:45:02 -0400] "GET /favicon.ico HTTP/1.1" 404 209
  6. 127.0.0.1 - - [22/Oct/2014:16:45:02 -0400] "GET /favicon.ico HTTP/1.1" 404 209
  7. 127.0.0.1 - - [22/Oct/2014:16:45:05 -0400] "GET / HTTP/1.1" 404 198
  8.  
  9. #*********** START OF timex.dev *********
  10. <VirtualHost *:80>
  11. ServerAdmin local@timex.dev
  12. DocumentRoot "Users/sp01010011/Dropbox/www/projects/timex/public"
  13. ServerName timex.dev
  14. ServerAlias www.timex.dev
  15. ErrorLog "/private/var/log/apache2/timex.dev-error_log"
  16. CustomLog "/private/var/log/apache2/timex.dev-access_log" common
  17.  
  18. <Directory "Users/sp01010011/Dropbox/www/dev/projects/timex/public">
  19. AllowOverride All
  20. #Order Deny, Allow
  21. #Deny from all
  22. Allow from 127.0.0.1
  23. Allow from ::1
  24. </Directory>
  25. </VirtualHost>
  26.  
  27. #************ // END OF timex.dev ***************
  28.  
  29. #*********** START OF sab.dev *********
  30. <VirtualHost *:80>
  31. ServerAdmin local@sab.dev
  32. DocumentRoot "/Users/sp01010011/Dropbox/www/dev/projects/sab/public"
  33. ServerName sab.dev
  34. ServerAlias www.sab.dev
  35. ErrorLog "/private/var/log/apache2/sab.dev-error_log"
  36. CustomLog "/private/var/log/apache2/sab.dev-access_log" common
  37.  
  38. <Directory "Users/sp01010011/Dropbox/www/dev/projects/sab/public">
  39. AllowOverride All
  40. #Order Deny, Allow
  41. #Deny from all
  42. Allow from 127.0.0.1
  43. Allow from ::1
  44. </Directory>
  45. </VirtualHost>
  46.  
  47. #************ // END OF sab.dev ***************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement