Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
91
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.  
  3. ServerAdmin admin@your_domain.com
  4. ServerName your_domain.com
  5. ServerAlias www.your_domain.com
  6. DocumentRoot /var/www/html/wordpress
  7.  
  8. <Directory /var/www/html/wordpress>
  9. Options Indexes FollowSymLinks
  10. AllowOverride All
  11. Require all granted
  12. </Directory>
  13.  
  14. ErrorLog ${APACHE_LOG_DIR}/your_domain.com_error.log
  15. CustomLog ${APACHE_LOG_DIR}/your_domain.com_access.log combined
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement