Commit 7d856238f39e97a7411a72afefb5f02e78095463
1 parent
595f4292
Exists in
master
and in
89 other branches
Fix logo reference from chef. Now the colab themes gets the right image
Signed-off-by: Gabriela Navarro <navarro1703@gmail.com> Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing
2 changed files
with
0 additions
and
10 deletions
Show diff stats
cookbooks/colab/recipes/default.rb
... | ... | @@ -112,12 +112,6 @@ directory '/var/lib/colab-assets/spb/' do |
112 | 112 | mode 0755 |
113 | 113 | end |
114 | 114 | |
115 | -cookbook_file '/var/lib/colab-assets/spb/logo.svg' do | |
116 | - owner 'root' | |
117 | - group 'root' | |
118 | - mode 0644 | |
119 | -end | |
120 | - | |
121 | 115 | cookbook_file '/var/lib/colab-assets/spb/fav.ico' do |
122 | 116 | owner 'root' |
123 | 117 | group 'root' | ... | ... |
cookbooks/colab/templates/colab.conf.erb
... | ... | @@ -10,10 +10,6 @@ server { |
10 | 10 | access_log /var/log/nginx/colab.access.log; |
11 | 11 | error_log /var/log/nginx/colab.error.log; |
12 | 12 | |
13 | - location ~ ^/static/img/logo\.[^.]+\.svg$ { | |
14 | - alias /var/lib/colab-assets/spb/logo.svg; | |
15 | - } | |
16 | - | |
17 | 13 | location ~ ^/static/img/fav\.[^.]+\.ico$ { |
18 | 14 | alias /var/lib/colab-assets/spb/fav.ico; |
19 | 15 | } | ... | ... |