Advertisement
OldManRiver

000-default.conf

Jun 10th, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80>
  2.  
  3.     ServerAdmin webmaster@localhost
  4.     DocumentRoot /var/www/html
  5.     #LogLevel info ssl:warn
  6.     ErrorLog ${APACHE_LOG_DIR}/error.log
  7.     CustomLog ${APACHE_LOG_DIR}/access.log combined
  8.  
  9.     # For most configuration files from conf-available/, which are
  10.     # enabled or disabled at a global level, it is possible to
  11.     # include a line for only one particular virtual host. For example the
  12.     # following line enables the CGI configuration for this host only
  13.     # after it has been globally disabled with "a2disconf".
  14.     #Include conf-available/serve-cgi-bin.conf
  15.  
  16.     # Start alias definitions
  17.         <Directory "/">
  18.             Options All MultiViews FollowSymLinks
  19.             AllowOverride All
  20.             Order allow,deny
  21.             allow from all
  22.         </Directory>
  23.  
  24.         Alias /ads "/home/files/Dropbox/Marketing/Ad Campaigns/"
  25.         <Directory "/home/files/Dropbox/Marketing/Ad Campaigns/">
  26.             AllowOverride All
  27.             Order allow,deny
  28.             allow from all
  29.             satisfy all
  30.         </Directory>
  31.  
  32.         Alias /dbox "/home/files/Dropbox/"
  33.         <Directory "/home/files/Dropbox/">
  34.             Options All Indexes MultiViews FollowSymLinks
  35.             Order allow,deny
  36.             allow from all
  37.             satisfy all
  38.         </Directory>
  39.  
  40.         Alias /files "/home/files/"
  41.         <Directory "/home/files/">
  42.             Options All Indexes MultiViews FollowSymLinks
  43.             AllowOverride All
  44.             Order allow,deny
  45.             allow from all
  46.             satisfy all
  47.         </Directory>
  48.  
  49.         Alias /GDS "/home/files/Dropbox/Projects/External/GDS/"
  50.         <Directory "/home/files/Dropbox/Projects/GDS/">
  51.             Options All Indexes MultiViews FollowSymLinks
  52.             AllowOverride All
  53.             Order allow,deny
  54.             allow from all
  55.             satisfy all
  56.         </Directory>
  57.  
  58.         Alias /projects "/home/files/Dropbox/Projects/"
  59.         <Directory "/home/files/Dropbox/Projects/">
  60.             Options All Indexes MultiViews FollowSymLinks
  61.             AllowOverride All
  62.             Order allow,deny
  63.             allow from all
  64.             satisfy all
  65.         </Directory>
  66.  
  67.         Alias /SEO "/home/files/Dropbox/Projects/seo-testing/"
  68.         <Directory "/home/files/Dropbox/Projects/seo-testing/">
  69.             Options All Indexes MultiViews FollowSymLinks
  70.             AllowOverride All
  71.             Order allow,deny
  72.             allow from all
  73.             satisfy all
  74.         </Directory>
  75.  
  76. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement