Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName example.com
  3. ServerAlias www.example.com
  4.  
  5. ProxyPass / http://<127.0.0.1:80/app/
  6. ProxyPassReverse / http://127.0.0.1:80/app/
  7. </VirtualHost>
  8.  
  9. port 1194
  10. proto tcp
  11. dev tun
  12.  
  13. ca /etc/openvpn/ca.crt
  14. cert /etc/openvpn/server.crt
  15. key server.key # This file should be kept secret
  16.  
  17. dh dh2048.pem
  18.  
  19. server 10.8.0.0 255.255.255.0
  20. ifconfig-pool-persist ipp.txt
  21.  
  22. persist-key
  23. persist-tun
  24.  
  25. status openvpn-status.log
  26. verb 3
  27.  
  28. client
  29.  
  30. dev tun
  31.  
  32. proto tcp
  33.  
  34. remote 123.123.123.123 1194
  35.  
  36. persist-key
  37. persist-tun
  38.  
  39. ca /etc/openvpn/ca.crt
  40. cert /etc/openvpn/home.crt
  41. key /etc/openvpn/home.key
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement