The proxypass tag has no wiki summary.
13
votes
2answers
20k views
Apache ProxyPass with SSL
I want to proxy requests from an SSL site via a non-SSL site. My Apache httpd.conf looks like this:
<VirtualHost 1.2.3.4:80>
ServerName foo.com
ProxyPass / https://bar.com/
...
1
vote
1answer
185 views
Fisheye + Nginx Reverse Proxy
I'm trying to run Fisheye behind a proxy. So far, I've managed to get Jira and Stash to work behind the proxy, but not Fisheye.
Here's my config file in Nginx:
server {
listen 80;
server_name ...
0
votes
1answer
229 views
Question about the syntax of the ProxyPass directive
All over the internet I see examples of people using ProxyPass, where the syntax looks something like this:
<Location />
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ...