Advertisement
Guest User

Untitled

a guest
Jun 19th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Hello,
  2. i'm absolutely not expert about zope and i've got a problem : i installed a "zope application" wich works fine but i have to give public access on this application with a reverse proxy and i dont know how to do that.
  3.  
  4. Actually the application works fine on a private server and i can reach it by https://192.168.151.233.
  5. The actual rewrite rule is like that :
  6. RewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/https/192.168.151.233:443/$1 [L,P]
  7.  
  8. I would like to be able to reach application from http://www.server.fr/blabla/app
  9. Somebody create rules on reverse proxy like that :
  10. ProxyPass /blabla/app https://192.168.151.233
  11. ProxyPassReverse /blabla/app https://192.168.151.233
  12. it works for the homepage, and only for the homepage.
  13. After that every internal links go on https://192.168.151.233.
  14. I understand that i've got to modify the default rewrite rule but i dont know how to do that.
  15. Does the rules on the reverse proxy have to be modified too ?
  16. Does someone could help me ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement