Project

Profile

Help

Issue #2526

Updated by dkliban@redhat.com over 7 years ago

Forward port 443 on your vagrant environment to port 4430 on your host by connecting to the vagrant box with the following command: 

 <pre> 
 vagrant ssh -- -L 4430:localhost:443 
 </pre> 

 Then create and publish a repo with a relative URL. 

 <pre> 
 pulp-admin -u admin -p admin rpm repo create --repo-id zoo --relative-url zoo --feed http://repos.fedorapeople.org/repos/pulp/pulp/demo_repos/zoo/ 
 pulp-admin -u admin -p admin rpm repo sync run --repo-id zoo 
 </pre> 

 When you navigate to `https://localhost:4430/pulp/repos/zoo` using a web browser, all the files appear to be there, but the URLs in the links have the relative URL missing. As a result all the links are broken.

Back