Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <VirtualHost *:443>
  2.  
  3. SSLEngine on
  4.  
  5. DocumentRoot /var/www/
  6.  
  7. <Directory />
  8. Options FollowSymLinks
  9. AllowOverride None
  10. Order deny,allow
  11. Deny from all
  12. Allow from 127.0.0.1
  13. allow from 192.168.
  14. allow from 10.8.0
  15. </Directory>
  16.  
  17. ...
  18.  
  19. ProxyRequests Off
  20. ProxyPreserveHost On
  21. ProxyVia On
  22.  
  23. SSLProxyEngine on
  24. <Location /AutodeskDM>
  25. Order Deny,Allow
  26. Deny from all
  27. Allow from 192.168.
  28. ProxyPass https://10.8.0.131/AutodeskDM
  29. ProxyPassReverse https://10.8.0.131/AutodeskDM
  30. </Location>
  31.  
  32. <Location /autodeskdm>
  33. Order Deny,Allow
  34. Deny from all
  35. Allow from 192.168.
  36. ProxyPass https://10.8.0.131/autodeskdm
  37. ProxyPassReverse https://10.8.0.131/autodeskdm
  38. </Location>
  39.  
  40. ....
  41.  
  42. </VirtualHost>
  43.  
  44. [error] [client 127.0.0.1] client denied by server configuration: proxy:http://10.8.0.131/AutodeskDM/
  45.  
  46. Allow from 127.0.
  47.  
  48. <Proxy *>
  49. Order deny,allow
  50. Deny from all
  51. Allow from 192.168.
  52. </Proxy>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement