Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #21 from Alfresco/develop
Browse files Browse the repository at this point in the history
.dhparam file location fixed
  • Loading branch information
Enzo Rivello committed Jan 5, 2017
2 parents 3653c3b + 419882b commit 5d772d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -18,19 +18,19 @@ The default choice is NginX, but it can be expanded to use your own webserver.
| default['webserver']['lb_hostname'] | String | Hostname/Address of the internal load-balancer | 127.0.0.1 |
| default['webserver']['lb_protocol'] | String | Protocol used to talk to the internal load-balancer | http |
| default['webserver']['lb_port'] | Int | Port of the internal load-balancer | 9001 |
| default['webserver']['use_nossl_config'] | Boolean | Wheter to avoid or use ssl | localhost |
| default['webserver']['use_nossl_config'] | Boolean | Wheter to avoid or use ssl | true |
| default['webserver']['certs']['filename'] | String | SSL Certs filename | alfresco |
| default['webserver']'certs']['ssl_folder']| String | Folder where the SSL certs will be stored | /etc/pki/tls/certs |
| default['webserver']['error_pages']['error_folder'] | String | Where the error pages will be stored | /var/www/html/error_pages |
| default['webserver']['harden'] | Boolean | Weter you want this installation to be hardened or no | true |
| default['webserver']['apply_hardening'] | Boolean | Weter you want this installation to be hardened or no | true |


## Usage

Just add the reference of this cookbook inside your `metadata.rb` file:

```
depends 'alfresco-webserver', '~> v0.7.3'
depends 'alfresco-webserver', '~> v0.7.4'
```


Expand Down
2 changes: 1 addition & 1 deletion attributes/nginx.rb
Expand Up @@ -114,7 +114,7 @@
default['nginx']['ssl_server_proxy']['ssl_stapling_verify'] = 'on'
default['nginx']['ssl_server_proxy']['ssl_protocols'] = 'TLSv1 TLSv1.1 TLSv1.2'

default['nginx']['ssl_server_proxy']['ssl_dhparam'] = "#{node['nginx']['ssl_folder']}/#{node['nginx']['filename']}.dhparam"
default['nginx']['ssl_server_proxy']['ssl_dhparam'] = "#{node['nginx']['ssl_folder']}/#{node['nginx']['ssl_filename']}.dhparam"

# Use Intermediate Cipher Compatibility
# https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28default.29
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Expand Up @@ -7,7 +7,7 @@

issues_url 'https://github.com/Alfresco/chef-alfresco-webserver/issues'
source_url 'https://github.com/Alfresco/chef-alfresco-webserver'
version '0.7.3'
version '0.7.4'

supports 'centos', '>= 7.0'
supports 'redhat', '>= 7.0'
Expand Down

0 comments on commit 5d772d2

Please sign in to comment.