Commit f18e9cbd5219700694490df409eb3d3c75ca8714
1 parent
437de872
Exists in
master
and in
29 other branches
SISP: make catalog as home page
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
cookbooks/reverse_proxy/templates/reverse_proxy.conf.erb
| ... | ... | @@ -67,6 +67,10 @@ server { |
| 67 | 67 | access_log /var/log/nginx/ssl-<%= node['config']['sisp_external_hostname'] %>.access.log; |
| 68 | 68 | error_log /var/log/nginx/ssl-<%= node['config']['sisp_external_hostname'] %>.error.log; |
| 69 | 69 | |
| 70 | + location = / { | |
| 71 | + rewrite ^ /social/search/sisp; | |
| 72 | + } | |
| 73 | + | |
| 70 | 74 | # TODO caching |
| 71 | 75 | location / { |
| 72 | 76 | proxy_pass http://colab; | ... | ... |