Guest User

Untitled

a guest
Jan 23rd, 2018
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Example:
  2. ~~~
  3. <VirtualHost *:80>
  4. <Directory "/path/to/frontend/www">
  5.  
  6. Options Indexes FollowSymLinks
  7.  
  8. AllowOverride All
  9.  
  10. Order deny,allow
  11.  
  12. Allow from all
  13.  
  14. Satisfy all
  15.  
  16. </Directory>
  17.  
  18.  
  19. ServerAdmin yourname@clevertech.biz
  20.  
  21. DocumentRoot "/path/to/frontend/www"
  22.  
  23. ServerName "road.crm.local"
  24.  
  25. ServerAlias "road.crm.local"
  26.  
  27. ErrorLog /var/log/apache2/road-error_log
  28.  
  29. CustomLog /var/log/apache2/road-access_log common
  30.  
  31. </VirtualHost>
  32. ~~~
Add Comment
Please, Sign In to add comment