Advertisement
Guest User

XBMC Server HTTP-Proxy.CONF

a guest
Oct 31st, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #
  2. # Implements a proxy/gateway for Apache.
  3. # # Required modules: mod_proxy, mod_proxy_http
  4. #
  5.  
  6. <IfModule proxy_module>
  7. <IfModule proxy_http_module>
  8.  
  9.  
  10. #
  11. # Reverse Proxy
  12. #
  13. ProxyRequests Off
  14.  
  15. <Proxy *>
  16. Require all granted
  17. </Proxy>
  18.  
  19.  
  20.  
  21. </IfModule>
  22.  
  23. <Location "williamsXBMC">
  24. ProxyPass http://http://williamsxbmclibrary.linkpc.net:8080/vfs
  25. ProxyPassReverse http://http://williamsxbmclibrary.linkpc.net:8080/vfs
  26. RequestHeader set Authorization "Basic eGJtYzpkZWMxMzE5OTA="
  27. </Location>
  28.  
  29.  
  30. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement