Advertisement
Guest User

Untitled

a guest
May 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <VirtualHost *:80>
  2. <IfModule mpm_itk_module>
  3. AssignUserId tb-5 tb-5
  4. </IfModule>
  5.  
  6. DocumentRoot "/home/tb-5/http/test/"
  7. ServerName test.local
  8. ServerAlias *.test.local
  9.  
  10. <Directory /home/tb-5/http/test/>
  11. Options Indexes FollowSymLinks MultiViews
  12. AllowOverride All
  13. Order allow,deny
  14. allow from all
  15. </Directory>
  16.  
  17. ErrorLog /home/tb-5/http/test_error.log
  18. CustomLog /home/tb-5/http/test_access.log combined
  19. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement