Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName wiki.bauer-feinkost.de
  3. Redirect permanent / https://wiki.bauer-feinkost.de/
  4.  
  5. ServerAdmin webmaster@localhost
  6. DocumentRoot /var/www/dokuwiki
  7.  
  8. <Directory />
  9. Options FollowSymLinks
  10. AllowOverride All
  11. </Directory>
  12. <Directory /var/www/dokuwiki>
  13. Options Indexes FollowSymLinks MultiViews
  14. AllowOverride All
  15. Order allow,deny
  16. allow from all
  17. </Directory>
  18.  
  19.  
  20.  
  21. ErrorLog ${APACHE_LOG_DIR}/error.log
  22. CustomLog ${APACHE_LOG_DIR}/access.log combined
  23.  
  24.  
  25. ProxyPass /http-bind/ http://localhost:7070/http-bind/
  26. ProxyPassReverse /http-bind/ http://localhost:7070/http-bind/
  27.  
  28. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement