Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName test.francescofiduccia.com
  3. DocumentRoot /var/www/test
  4. <Directory "/var/www/test">
  5. Options Indexes MultiViews FollowSymLinks
  6. Order deny,allow
  7. Allow from all
  8. </Directory>
  9. </VirtualHost>
  10.  
  11.  
  12. <VirtualHost *:80>
  13. ServerName blog.francescofiduccia.com
  14. ServerAlias *francescofiduccia.com
  15. ServerAdmin francesco.fiduccia@gmail.com
  16. DocumentRoot /var/www/wordpress
  17. DirectoryIndex index.php
  18.  
  19. <Directory /var/www/wordpress/>
  20. AllowOverride All
  21. Order Deny,Allow
  22. Allow from all
  23. </Directory>
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement