Guest User

Untitled

a guest
Nov 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <VirtualHost *:443>
  2. ServerName domain.name.com
  3. DocumentRoot /var/www/html/wp
  4.  
  5. <Proxy *>
  6. Require all granted
  7. </Proxy>
  8.  
  9. <Location /ft/>
  10. ProxyPass http://localhost:9000/
  11. ProxyPassReverse http://localhost:9000/
  12. </Location>
  13.  
  14. <Directory "/var/www/html">
  15. Options FollowSymLinks
  16. AllowOverride none
  17. Require all granted
  18. </Directory>
  19. ...
  20.  
  21. </VirtualHosts>
  22.  
  23. <Location /api/>
  24. ProxyPass http://localhost:9000/
  25. ProxyPassReverse http://localhost:9000/
  26. </Location>
Add Comment
Please, Sign In to add comment