Advertisement
Guest User

example-conf-1

a guest
Oct 8th, 2020
1,536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin admin@example.com
  3. ServerName example.com
  4. ServerAlias www.example.com
  5. DocumentRoot /var/www/example.com/
  6. ErrorLog ${APACHE_LOG_DIR}/error.log
  7. CustomLog ${APACHE_LOG_DIR}/access.log combined
  8.  
  9. <Directory /var/www/example.com/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride All
  12. Require all granted
  13. </Directory>
  14. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement