Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # Set reverse proxy
  2. ProxyPass "/" "http://localhost:10080/"
  3. ProxyPassReverse "/" "http://localhost:10080/"
  4. ProxyRequests On
  5. ProxyVia On
  6.  
  7. <Proxy *>
  8. Order deny,allow
  9. Allow from all
  10. AuthType Basic
  11. AuthName "Password Required"
  12. AuthUserFile /home/secure/.passwords
  13. Require user ivy
  14. </Proxy>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement