search for: myweb01

Displaying 3 results from an estimated 3 matches for "myweb01".

Did you mean: myweb
2016 Feb 29
4
Problems with ProxyPass to a local ip (using SSL)
...S 6.7 that needs to redirects requests from port 444 to port 5100 in its local ip. But I am doing some mistakes because every time I'm receiving a loop error. My actual httpd's config for this virtualhost is: NameVirtualHost 192.168.1.5:444 <VirtualHost 192.168.1.5:444> ServerName myweb01.local.domain ErrorLog logs/ssl_error.log CustomLog logs/ssl_access.log combined CustomLog logs/ssl_request.log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" LogLevel info SSLEngine on SSLProxyEngine On SSLProtocol -ALL +SSLv3 +TLSv1 SSLCipherSuite ALL:!ADH:!EXPORT56:...
2016 Feb 29
0
Problems with ProxyPass to a local ip (using SSL)
...requests from port 444 to port 5100 in its local ip. But I am doing some mistakes because every time I'm receiving a loop error. > > My actual httpd's config for this virtualhost is: > > NameVirtualHost 192.168.1.5:444 > <VirtualHost 192.168.1.5:444> > ServerName myweb01.local.domain > ErrorLog logs/ssl_error.log > CustomLog logs/ssl_access.log combined > CustomLog logs/ssl_request.log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" > LogLevel info > SSLEngine on > SSLProxyEngine On > SSLProtocol -ALL +SSLv3 +TLSv1...
2016 Mar 01
0
Problems with ProxyPass to a local ip (using SSL)
...Martinez wrote: > But I am doing some mistakes because every time I'm receiving a loop error. ... > <VirtualHost 192.168.1.5:444> ... > ProxyPass / http://192.168.1.5:5100/ > ProxyPassReverse / http://192.168.1.5:5100/ > RewriteEngine On > RewriteRule ^/(.*) https://myweb01.local.domain:444/$1 [R,L] > </VirtualHost> > > As you can see, I need to do a redirection to port 5100 from 444 port and protect it using ssl. I think you need to figure out whether you want to proxy those requests or rewrite them. You can't reasonably do both. If you want...