Commit 77de0659cfedcadee80232f0295284a3e217b123
1 parent
25d61d7a
Exists in
master
and in
39 other branches
Adding configs to reverse proxy and auth jenkins
Showing
3 changed files
with
5 additions
and
0 deletions
Show diff stats
Vagrantfile
... | ... | @@ -22,6 +22,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
22 | 22 | config.vm.network :forwarded_port, guest: 80, host: 8080 |
23 | 23 | config.vm.network :forwarded_port, guest: 7000, host: 8000 |
24 | 24 | config.vm.network :forwarded_port, guest: 5280, host: 5280 |
25 | + config.vm.network :forwarded_port, guest: 8080, host: 8081 | |
25 | 26 | |
26 | 27 | # Create a private network, which allows host-only access to the machine |
27 | 28 | # using a specific IP. | ... | ... |
src/colab/custom_settings.py
src/colab/urls.py
... | ... | @@ -35,4 +35,7 @@ urlpatterns = patterns('', |
35 | 35 | # Trac URLs |
36 | 36 | url(u'^(?P<path>(?:admin|wiki|changeset|newticket|ticket|chrome|timeline|roadmap|browser|report|tags|query|about|prefs|log|attachment|raw-attachment).*)$', |
37 | 37 | 'revproxy.views.proxy', {'base_url': settings.COLAB_TRAC_URL}), |
38 | + | |
39 | + # Jenkins URLs | |
40 | + url(u'^ci/(?P<path>.*)$', 'revproxy.views.proxy', {'base_url': settings.COLAB_CI_URL}), | |
38 | 41 | ) | ... | ... |