Guest User

Untitled

a guest
Jun 30th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/www/html
  4. ErrorLog ${APACHE_LOG_DIR}/error.log
  5. CustomLog ${APACHE_LOG_DIR}/access.log combined
  6. <Directory /storage/sdmods/>
  7. Options -Indexes
  8. ExpiresActive On
  9. ExpiresDefault "access plus 1 week"
  10. Order Allow,Deny
  11. allow from all
  12. Require all granted
  13. </Directory>
  14. ProxyPass "/content/" "!"
  15. Alias "/content/" "/storage/sdmods/"
  16. ProxyPass "/" "http://google.com/"
  17. </VirtualHost>
Add Comment
Please, Sign In to add comment