Advertisement
JorgeDeJesus

Apache2 Proxy

Aug 24th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <VirtualHost *:443>
  2. ServerName bak.almoneda.net
  3. SSLEngine On
  4. SSLProxyEngine On
  5.  
  6. ProxyRequests Off
  7. ProxyPreserveHost On
  8. ProxyPass / http://171.24.3.3:9095/ retry=0
  9. ProxyPassReverse / http://171.24.3.3:9095/
  10.  
  11. <Proxy *>
  12. Order deny,allow
  13. Allow from all
  14. </Proxy>
  15.  
  16.  
  17. ErrorLog logs/bak.almoneda.net-error_log
  18. CustomLog logs/bak.almoneda.net-access_log common
  19.  
  20. </VirtualHost>
  21.  
  22. <VirtualHost *:80>
  23. ServerName bak.almoneda.net
  24.  
  25. SSLEngine Off
  26.  
  27. Redirect / https://bak.almoneda.net/
  28.  
  29.  
  30. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement