Commit 7daffb59e303b7c1d1e849918de301db8cd0be5e

Authored by Antonio Terceiro
1 parent 652d7a27

Use softwarepublico.dev for development/tests

cookbooks/colab/templates/colab.conf.erb
... ... @@ -5,7 +5,7 @@ upstream colab {
5 5 server {
6 6 listen *:80;
7 7  
8   - server_name <%= node['config']['external_hostname'] %> localhost;
  8 + server_name <%= node['config']['external_hostname'] %> softwarepublico.dev;
9 9  
10 10 access_log /var/log/nginx/colab.access.log;
11 11 error_log /var/log/nginx/colab.error.log;
... ...
cookbooks/colab/templates/settings.yaml.erb
... ... @@ -35,7 +35,7 @@ BROWSERID_AUDIENCES:
35 35 - <%= node['config']['site_url'].sub('https:', 'http:') %>
36 36  
37 37 ALLOWED_HOSTS:
38   - - localhost # for tests
  38 + - softwarepublico.dev # for development/tests
39 39 - <%= node['config']['external_hostname'] %>
40 40  
41 41 ## Disable indexing
... ...