Commit cc0e8772e5d634db1e0f9cd8f023434afe50a26e
1 parent
2c7cd899
Exists in
master
and in
39 other branches
Added PROXIED_APPS dict to configured all proxied apps
Showing
4 changed files
with
4 additions
and
4 deletions
Show diff stats
src/proxy/gitlab/views.py
src/proxy/jenkins/views.py
src/proxy/redmine/views.py
src/proxy/trac/views.py
... | ... | @@ -8,7 +8,7 @@ from .models import Wiki, Ticket, Revision |
8 | 8 | |
9 | 9 | |
10 | 10 | class TracProxyView(HitCounterViewMixin, ColabProxyView): |
11 | - upstream = settings.COLAB_TRAC_URL | |
11 | + upstream = settings.PROXIED_APPS['trac']['upstream'] | |
12 | 12 | diazo_theme_template = 'proxy/trac.html' |
13 | 13 | |
14 | 14 | def get_object(self): | ... | ... |