Advertisement
alpa_s

Untitled

Feb 8th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <VirtualHost *:80>
  2. #Имя хоста
  3. ServerName branding.loc
  4. #Корневая папка хоста
  5. DocumentRoot /home/alex/Projects/branding.loc/frontend/web/
  6. <Directory /home/alex/Projects/branding.loc>
  7. #Разрешение на перезапись всех директив при помощи .htaccess
  8. Require all granted
  9. AllowOverride All
  10. </Directory>
  11. </VirtualHost>
  12.  
  13. <VirtualHost *:80>
  14. #Имя хоста
  15. ServerName backend.branding.loc
  16. #Корневая папка хоста
  17. DocumentRoot /home/alex/Projects/branding.loc/backend/web/
  18. <Directory /home/alex/Projects/branding.loc>
  19. #Разрешение на перезапись всех директив при помощи .htaccess
  20. Require all granted
  21. AllowOverride All
  22. </Directory>
  23. </VirtualHost>
  24.  
  25. <VirtualHost *:80>
  26. #Имя хоста
  27. ServerName storage.branding.loc
  28. #Корневая папка хоста
  29. DocumentRoot /home/alex/Projects/branding.loc/storage/web/
  30. <Directory /home/alex/Projects/branding.loc>
  31. #Разрешение на перезапись всех директив при помощи .htaccess
  32. Require all granted
  33. AllowOverride All
  34. </Directory>
  35. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement