Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # My custom host
  2. <VirtualHost *:80>
  3. ServerName mysite.dev
  4. DocumentRoot "/Users/yourusername/path/to/your/site"
  5. <Directory "/Users/yourusername/path/to/your/site">
  6. Options Indexes FollowSymLinks Includes ExecCGI
  7. AllowOverride All
  8. Require all granted
  9. </Directory>
  10. ErrorLog "logs/mysite.local-error_log"
  11. </VirtualHost>
Add Comment
Please, Sign In to add comment