Advertisement
riespandi

apache_localhost.conf

Jan 29th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName localhost
  3. ServerAdmin admin@localhost
  4. DocumentRoot /var/www/html
  5. ErrorLog ${APACHE_LOG_DIR}/error.log
  6. CustomLog ${APACHE_LOG_DIR}/access.log combined
  7. DirectoryIndex index.php index.html default.html
  8. Alias /index.php /var/www/html/index.php
  9. <Directory /var/www/html>
  10. Options Indexes FollowSymLinks
  11. AllowOverride All
  12. Require all granted
  13. </Directory>
  14. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement