Ricardo Alvarez wrote:
> Hi!
> 
> We have Artifactory 2.0.2 installed on a Tomcat listening on 8080 port.
> Prior the Tomcat, we have an Apache (with mod-proxy), listening on 443 port,
> so our users access to a HTTPS URL to get Artifactory.
> 
> But we have a problem: in "Browser" tag on Artifactory, inside the browsed
> objects , we have several "HTTP" links generated from the application that
> produce "not found errors" (our Apache is using HTTPS).
> 
> So, do you know how could we avoid this HTTP links?
> 
> Thank you in advance!!
> 
> Ricardo Álvarez

You could try configuring a virtualhost in Apache listening on port 80
with a Redirect permanent statement to your https url, like so:

<VirtualHost *:80>
     ServerName yourartifactoryserver
     Redirect permanent / https://yourartifactoryserver/
</VirtualHost>
<VirtualHost *:443>
     ServerName yourartifactoryserver
     ...
</VirtualHost>


-- 
Thijs Schnitger
Func. Internet Integration
W http://www.func.nl
T +31 20 4230000
F +31 20 4223500


------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users

Reply via email to