Advertisement
OldManRiver

/etc/apache2/conf.d/aliases.conf

Sep 9th, 2014
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. # Localhost and Alias definitions
  2.  
  3. <VirtualHost *:80>
  4. <Directory "/">
  5. Options Indexes MultiViews FollowSymLinks
  6. AllowOverride All
  7. Order allow,deny
  8. allow from all
  9. </Directory>
  10.  
  11. Alias /ADS "/home/files/Ads & Marketing/"
  12. <Directory "/home/files/Ads & Marketing/">
  13. Options Indexes MultiViews FollowSymLinks
  14. AllowOverride All
  15. Order allow,deny
  16. allow from all
  17. </Directory>
  18.  
  19. Alias /dbox "/home/files/Dropbox/"
  20. <Directory "/home/files/Dropbox/">
  21. Options Indexes MultiViews FollowSymLinks
  22. AllowOverride All
  23. Order allow,deny
  24. allow from all
  25. </Directory>
  26.  
  27. Alias /files "/home/files/"
  28. <Directory "/home/files/">
  29. Options Indexes MultiViews FollowSymLinks
  30. AllowOverride All
  31. Order allow,deny
  32. allow from all
  33. </Directory>
  34.  
  35. Alias /GDS "/home/files/Dropbox/Projects/External/GDS/"
  36. <Directory "/home/files/Dropbox/Projects/External/GDS/">
  37. Options Indexes MultiViews FollowSymLinks
  38. AllowOverride All
  39. Order allow,deny
  40. allow from all
  41. </Directory>
  42.  
  43. Alias /Projects "/var/www/Projects/"
  44. <Directory "/var/www/Projects/">
  45. Options Indexes MultiViews FollowSymLinks
  46. AllowOverride All
  47. Order allow,deny
  48. allow from all
  49. </Directory>
  50.  
  51. Alias /projects "/home/files/Dropbox/Projects/"
  52. <Directory "/home/files/Dropbox/Projects/">
  53. Options Indexes MultiViews FollowSymLinks
  54. AllowOverride All
  55. Order allow,deny
  56. allow from all
  57. </Directory>
  58.  
  59. Alias /proj "/home/files/Projects/"
  60. <Directory "/home/files/Projects/">
  61. Options Indexes MultiViews FollowSymLinks
  62. AllowOverride All
  63. Order allow,deny
  64. allow from all
  65. </Directory>
  66.  
  67. Alias /SEO "/home/files/SEO/"
  68. <Directory "/home/files/SEO/">
  69. Options Indexes MultiViews FollowSymLinks
  70. AllowOverride All
  71. Order allow,deny
  72. allow from all
  73. </Directory>
  74.  
  75. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement