Hi. I want to host an Artifactory server behind Apache and have it to be accessible without any path (like "/artifactory"). I have a DNS "artifacts.mycompany.com" and I want that DNS leads exactly to the Artifactory.
I read this: http://www.jfrog.com/confluence/display/RTF/Apache+HTTP+Server I added an AJP connector in Artifactory TomCat's config and added the following VHost in Apache config: <VirtualHost *:80> ServerName artifacts.mycompany.com ProxyRequests Off ProxyPreserveHost On <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / ajp://localhost:8022/ ProxyPassReverse / ajp://localhost:8022/ </VirtualHost> This works and I can access my Artifactory via "http://artifacts.mycompany.com/artifactory". Now I want to have it on "http://artifacts.mycompany.com" *How to do this?* I tired to add path to: ProxyPass / ajp://localhost:8022/artifactory/ ProxyPassReverse / ajp://localhost:8022/artifactory/ This doesn't work. -- View this message in context: http://forums.jfrog.org/Setup-Artifactory-with-empty-path-tp7580303.html Sent from the Artifactory - Users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ One dashboard for servers and applications across Physical-Virtual-Cloud Widest out-of-the-box monitoring support with 50+ applications Performance metrics, stats and reports that give you Actionable Insights Deep dive visibility with transaction tracing using APM Insight. http://ad.doubleclick.net/ddm/clk/290420510;117567292;y _______________________________________________ Artifactory-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/artifactory-users
